Hi
I think this is a very simple question.
I have an element pPr defined to have a sequence of child elements,
one of which is pStyle:
<xsd:element name="pPr" >
<xsd:complexType>
<xsd:sequence>
<xsd:element name="pStyle" minOccurs="0">
<xsd:complexType>
<xsd:attribute name="val" type="xsd:string"/>
</xsd:complexType>
</xsd:element>
:
You can see that pStyle is just a string.
So I would like the PPr class generated by xjc to define
String pStyle;
What is the simplest way to achieve this please?
thanks
Jason