summaryrefslogtreecommitdiffstats
path: root/sdo-java/tags/1.0-incubating-beta1/sdo/impl/src/test/resources/containmenttest.xsd
blob: b4c5f6fde69277fba388bec84c617221d83e37f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:contain="http://www.example.com/ContainmentTest" targetNamespace="http://www.example.com/ContainmentTest"> 

     <xsd:element name="containTestInstance" type="contain:ContainmentTest"/>

     <xsd:complexType mixed="true" name="ContainmentTest">
       <xsd:sequence>
          <xsd:element name="Name" type="xsd:string"/>
          <xsd:element name="Contain" type="contain:ContainmentTest"/>
          <xsd:element maxOccurs="unbounded" minOccurs="0" name="ContainMany" type="contain:ContainmentTest"/>
       </xsd:sequence>
   </xsd:complexType>
</xsd:schema>