Hi there, I am trying to identify a complex type defined in a similar manner as the following sketch of schema. I was hoping to be able to get the information from a XSElementDeclaration class retrieved from an ElementPSVI class. However, it seems I have not found the right method to do it.
<xs:complexType name="ArrayOfParameterType"> <xs:sequence> <xs:element name="item" type="ParameterType" nillable="true" *minOccurs*="0" *maxOccurs*="unbounded" /> </xs:sequence> </xs:complexType> Is there a way I can tell the minOccurs and maxOccurs of the sequence of an element in using JAXP ? thanks, David