Youssef, You will not get such an accessor method. You will instead get methods like this : FooDocument.getFoo().getAttribute1(); FooDocument.getFoo().getAttribute2(); FooDocument.getFoo().getAttribute3();
On 10/3/07, Youssef <[EMAIL PROTECTED]> wrote: > > 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] > >

