Hy,
I want to implement a java class for xml schema which contains xsd:choice. could you say me the java class to developp for this xml schema for example:
 
<complexType name="Payment">
   <choice>
      <element name="cash" nillable="true" type="string"/>
      <element name="check" type="Check"/>
      <element name="credit" type="Credit"/>
  </choice>
</complexType>
 
 
I must create a java class Payment to represent this xml schema.
 
Best regards

Reply via email to