Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Archived » XML Schema Definition (XSD) » Retreiving the original content of an extended type
Retreiving the original content of an extended type [message #583380] Tue, 03 February 2004 08:22
mike is currently offline mikeFriend
Messages: 35
Registered: July 2009
Member
Hi,
Is it possible to get the original content model of an extended type?
I thought so and I tried using getTypes methods but it does not seem to
work.
Is there another way to do it?
Next is a simple example I'm working on.

Thanx,

--mike

<xs:complexType name="Address">
<xs:sequence>
<xs:element name="name" type="xs:string"/>
<xs:element name="street" type="xs:string"/>
<xs:element name="city" type="xs:string"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="UKAddress">
<xs:complexContent>
<xs:extension base="Address">
<xs:sequence>
<xs:element name="country" type="xs:string"/>
</xs:sequence>
<xs:attribute name="exportCode" type="xs:positiveInteger" fixed="1"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
Previous Topic:xsd location and import problem
Next Topic:Retreiving the original content of an extended type
Goto Forum:
  


Current Time: Fri Apr 26 07:43:56 GMT 2024

Powered by FUDForum. Page generated in 0.03044 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top