Here's a snippet of
schema with xs:any element:
<xs:complexType
name="StatusDetailType">
<xs:sequence>
<xs:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<xs:sequence>
<xs:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
XMLBeans generates
StatusDetailType without any any children manipulation methods. What's the right
way of adding a child element to this element? My child element has Java class
generated by XMLBeans too.
thanks,
Argyn

