I have the following XSD fragment that is from a Vendor, I can't change the way it is specified:
<xsd:element name="navmap">
<xsd:complexType>
<xsd:choice minOccurs="0" maxOccurs="unbounded">
<xsd:element ref="navitem"/>
<xsd:element ref="debug"/>
</xsd:choice>
<xsd:attribute name="focus" type="xsd:string" use="optional"/>
</xsd:complexType>
</xsd:element>
Right now with no customizations it generates the following code
@XmlElements({
@XmlElement(name = "navitem", type = Navitem.class),
@XmlElement(name = "debug", type = Debug.class)
})
protected List<Object> navitemOrDebug;
I would rather it generate a separate list for each type like below
@XmlElements({
@XmlElement(name = "navitem", type = Navitem.class)
})
protected List<Navitem> navitems;
@XmlElements({
@XmlElement(name = "debug", type = Debug.class)
})
protected List<Debug> debugs;
I have the following in my .xjb file that renames the entire List but I can't figure out how to split them up.
<jxb:bindings node="//xsd:element[@name='navmap']//xsd:complexType//xsd:choice">
<jxb:property name="contents" />
</jxb:bindings>
How do I specify that I want a separate List or Set for each of the types in an external .xjb binding file?
If I can't do that, How do I add an <jaxb:annotation/> to the .xsd file to specify a separate List or Set for each of the types?
I don't care about ordering, the order is not important in this particular case.
NOTE: I would prefer an external .xjb solution, I don't want to have to diff a custom .xsd against every new version the vendor provides, there are too many of them.