users@jaxb.java.net

missing setWhatever()

From: Malachi de AElfweald <malachi_at_EOTI.ORG>
Date: Thu, 27 Mar 2003 10:46:44 -0700

Ok, it is getting further....

For some reason now, it is generating the "List getContent()", but not the "setContent(List)"... It is generating set methods for the attributes, but not for the child elements.

Also, I have the following:

 <xsd:element name="dynArray" type="dynArrayIntf" />

 <xsd:complexType name="dynArrayIntf" mixed="true">
  <xsd:choice>
   <xsd:element name="attribute" type="attributeIntf" minOccurs="0" maxOccurs="unbounded"/>
  </xsd:choice>
 </xsd:complexType>

it is generating the AttributeIntf correctly, but it is also generating a DynArray.Attribute.... what is that for?

Malachi