Questions on DCD

Murray Maloney murray at muzmo.com
Wed Jan 20 22:29:35 GMT 1999


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 at muzmo.com
Pickering, Ontario 		Email: murray at yuri.org
Canada, L1W 3K6    		

xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev at ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/
To (un)subscribe, mailto:majordomo at ic.ac.uk the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo at ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa at ic.ac.uk)




More information about the Xml-dev mailing list