hi,
i have a  schema containing attribute-group schema element like this:
<xs:element name="Foo">
   <xs:complexType>
       .....
       <xs:attributeGroup ref="barGroup"/>
    </xs:complexType>
    </xs:element>

<xs:attributeGroup name="barGroup">
<xs:attribute name="attribute1" type="value1"/>
       <xs:attribute name="attribute2" type="value2"/>
       <xs:attribute name="attribute2" type="value2"/>
       <xs:anyAttribute namespace="##any" processContents="lax"/>
   </xs:attributeGroup>
</xs:schema>

My question is: how can i acced to barGroup attributeGroup to read attribute value? i connot found any getter method for this attributeGroup , something like Enum enum1 = FooDocument.getFoo().getBarGroupAttributeGroupe();

thkx in advance

youssef

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

Reply via email to