Hi all,
I would like to know if it is possible (maybe by using JAXB customizations) to simplify/flatten the generated Java classes structure. The reason is that my XSD is quite complex with a lot of levels which are really annoying for my Java application (and I *cannot* change the XSD).
In the example below, I would like to merge the fields of classes B and C in a single "BC" class.
Example:
Here is an XSD:
-------------------------------------------------
<?xml version="1.0" encoding="ISO-8859-1" ?>
<xs:schema xmlns:xs="
http://www.w3.org/2001/XMLSchema">
<xs:element name="B" type="BType"/>
<xs:complexType name="BType">
<xs:sequence>
<xs:element name="C" type="CType"/>
<xs:element name="FieldB1" type="xs:string"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="CType">
<xs:sequence>
<xs:element name="FieldC1" type="xs:string"/>
<xs:element name="FieldC2" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:schema>
-------------------------------------------------
JAXB generation results in the following two classes: BType.java and CType.java
-------------------------------------------------
public class BType {
protected CType c;
protected String fieldB1;
[...]
}
public class CType {
protected String fieldC1;
protected String fieldC2;
[...]
}
-------------------------------------------------
And I would like to merge these two classes to have something like that
-------------------------------------------------
public class BCType {
protected String fieldB1;
protected String fieldC1;
protected String fieldC2;}
-------------------------------------------------
Thanks!
Jeremy