Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Re: SimpleType as valid derivation of abstract type in 1.1 ?

From: Guillaume Lebleu <gl@---------.--->
To: "C. M. Sperberg-McQueen" <cmsmcq@---.--->
Date: 3/8/2007 4:52:00 AM
C. M. Sperberg-McQueen wrote:
> Why do you want abstract simple types?
>
I want abstract types that both simpleType or complexType can derive from.

My use case is the following: I want to use XSD to define abstract 
patterns and enforce these patterns. For instance, one pattern is "all 
my Obj have an ObjId"

See below code sample, hope it helps. If you tell me there is no other 
way to do this, then I will submit to the list you mentioned.

Thank you,

Guillaume

<!-- all Obj have an abstract ObjId -->

<xsd:complexType name="Obj">
    <xsd:sequence>
       <xsd:element ref="ObjId"/>
    </xsd:sequence>
</xsd:complexType>

<xsd:element name="ObjId" abstract="true"/>
<xsd:complexType name="ObjId"  abstract="true"/>

<!-- all Car are objects and have a CarId -->

<!-- type CarId is a restriction of ObjId / cannot do this today -->

<xsd:element name="CarId" type="CarId" substitutionGroup="ObjId"/>

<xsd:complexType name="Car">
    <xsd:complexContent>
       <xsd:restriction base="Obj">
          <xsd:sequence>
             <xsd:element ref="CarId"/>
          </xsd:sequence>
       </xsd:restriction>
    </xsd:complexContent>
</xsd:complexType>

From noah_mendelsohn@u... Fri Mar 09 02:47:47 2007
Received: from aji.


transparent
Print
Mail
Like It
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent