Hello,

I'd like to customize method names of classes that are generated from XML schema. Here's an example schema:

<element name="team">
<complexType>
  <sequence>
    <element name="player" minOccurs="0" maxOccurs="unbounded">
      <complexType>
        <attribute name="name" type="xs:string"/>
      </complexType>
    </element>
  </sequence>
</complexType>
</element>


I'd like the generated class to have a method named 'getTeams()' and not 'getTeam()'. Is there a way to do this?

Thanks,

Ian


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to