blob: c1ca3899297e75524fbd1a6e052898ffb8fb21ef [file] [log] [blame]
<xsd:schema
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:pre="http://xbean/scomp/attribute/GlobalAttrDefault"
xmlns="http://xbean/scomp/derivation/AttributeExtension"
targetNamespace="http://xbean/scomp/derivation/AttributeExtension"
>
<xsd:import namespace="http://xbean/scomp/attribute/GlobalAttrDefault"
schemaLocation="../attribute/GlobalAttrDefault.xsd"/>
<!--element only-->
<xsd:complexType name="baseT">
<xsd:attribute ref="pre:testattributeInt"/>
<xsd:attribute ref="pre:testattribute"/>
</xsd:complexType>
<!--mixed-->
<xsd:complexType name="extendedT">
<xsd:complexContent>
<xsd:extension base="baseT">
<xsd:attribute name="testattribute" type="xsd:string"/>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:element name="ExtendedElement" type="extendedT"/>
</xsd:schema>