Hey all,
I'm using JAXB to generate java code from xsd.
I want to generate attribute (Java code) that cannot be used in the xml.
For example:
<xs:complexType name="Button">
<xs:attribute type="xs:string"
name="ribbonGroup">
</xs:complexType>
I want to see the getter and setter of the attribute ribbonGroup in the Button java class, but I don't want to let the user the option to see this attribute in the xml.
Thank you.