-
Type: Bug
-
Status: Open
-
Priority: Minor
-
Resolution: Unresolved
-
Affects Version/s: 1.1.11
-
Fix Version/s: None
-
Environment:Eclipse Juno, Windows 7
-
Tags:
When generating adapter classes for schemas containing complex fields, the generated class contains compiler errors for the setter methods of the complex types (specified parameter type is Object, required is Serializable)
Beyond that, it would be very useful, when the getters and setter for complex type fields would cope with a specialized class containing the fields of the complex type; e.g.
<pre>
public List<Classification> getClassification() throws PropertyException, ClientException;
public void setClassification(List<Classification> value) throws PropertyException, ClientException
</pre>