[
Lists Home |
Date Index |
Thread Index
]
- From: Murray Maloney <murray@muzmo.com>
- To: Maneesha Jain <Maneesha.Jain@Ebay.Sun.COM>
- Date: Wed, 20 Jan 1999 17:22:15 -0500
At 04:49 PM 1/20/99 -0500, Maneesha Jain wrote:
>Thanks for the response. I guess I was looking for a way to
>represent following java class in DCD syntax.
>
>In java-->
>
>class Kid
>{
> Person mother; *****
> Person father;
>}
>In DCD -->
>
><ElementDef Type="Kid">
> <Element>Person</Element>
> <Element>Person</Element>
></ElementDef>
>
><ElementDef Type="Person">
> <Element>Name</Element>
> <Element>Address</Element>
></ElementDef>
>
In SOX, you can do this as:
<elementtype name="Person">
<model><sequence>
<element name="Name"/>
<element name="Address"/>
</sequence><model>
</elementtype>
<elementtype name="Kid">
<model><sequence>
<element name="father"/>
<element name="mother"/>
</sequence></model>
</elementttype>
<elementtype name="father">
<instanceof name="Person"/>
</elementtype>
<elementtype name="mother">
<instanceof name="Person"/>
</elementtype>
>What I don't understand is where in DCD can I specify that the "Ist Person"
>information is about the "mother" and "Second Person" information is about
>"father". In concept, I was looking for a way to specify the "type" and "name"
>for a <Element> just like in java definition marked as (*****).
Does my example address your question?
Regards,
Murray
Murray Maloney, Esq. Phone: (905) 509-9120
Muzmo Communication Inc. Fax: (905) 509-8637
671 Cowan Circle Email: murray@muzmo.com
Pickering, Ontario Email: murray@yuri.org
Canada, L1W 3K6
xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/
To (un)subscribe, mailto:majordomo@ic.ac.uk the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo@ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa@ic.ac.uk)
|