Hi, How can I get the annotation of an extension?
Example: <xsd:element name="ElementName" minOccurs="1" maxOccurs="1" nillable="true"> <xsd:annotation> ... </xsd:annotation> <xsd:complexType> <xsd:simpleContent> <xsd:extension base="f:ElementNameType"> <xsd:annotation> ... <-- This is what I want to get! </xsd:annotation> <xsd:attribute name=... /> </xsd:simpleContent> </xsd:complexType> </xsd:element> Best regards

