5543eb9de8
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1824563 13f79535-47bb-0310-9956-ffa450edef68
26 lines
937 B
XML
26 lines
937 B
XML
<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> |