Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a schema that looks like

<xs:choice minOccurs="0" maxOccurs="unbounded">
    <xs:element name="a" type="a" />
    <xs:element name="b" type="b" />
</xs:choice>

XML Beans generates the two methods getAArray() and getBArray(), which return A and B elements separately, losing their ordering.

I tried to let types a and b extend the common type t:

<xs:complexType name="t">
    <!-- empty -->
</xs:complexType>

<xs:complexType name="a">
    <xs:complexContent><xs:extension base="t">
        <!-- stuff -->
    </xs:extension></xs:complexContent>
</xs:complexType>

<xs:complexType name="b">
    <xs:complexContent><xs:extension base="t">
        <!-- different stuff -->
    </xs:extension></xs:complexContent>
</xs:complexType>

so now generated interfaces A and B have the same superinterface T, but I don't get any additional method from xmlbeans.

How do I get a list of sorted T objects, from a xs:choice element? Or at least a list of sorted XMLObject objects, which I will cast later?

share|improve this question
um, ok, this one answers to my question, for untyped elements: stackoverflow.com/questions/975310/… – djjeck Oct 26 '10 at 14:31
what about (super)typed elements, still?I guess it's unnecessary – djjeck Oct 26 '10 at 14:32

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.