Hi all,
assuming that the following code is a part of a schema,
is there any way to find out, through the XMLBeans API, information
about the elements included in a "sequence"?
For example, that the element named "date":
-> belongs to a "sequence" of elements
-> precedes to the element named "line-item"
-> comes after to element named "customer"
and the sequence includes the elements "customer", "date" and "item-line"
code:
~~~~
<xs:complexType>
<xs:sequence>
<xs:element name="customer" type="po:customer"/>
<xs:element name="date" type="xs:dateTime"/>
<xs:element name="line-item" type="po:line-item"
minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="shipper" type="po:shipper" minOccurs="0"
maxOccurs="1"/>
</xs:sequence>
</xs:complexType>
Regards,
John Psoroulas
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]