[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: Questions on DCD

  • From: Andrew Layman <andrewl@m...>
  • To: "'Maneesha.Jain@E...'" <Maneesha.Jain@E...>, "'xml-dev@i...'" <xml-dev@i...>
  • Date: Thu, 21 Jan 1999 10:17:47 -0800

RE: Questions on DCD
Maneesha Jain asks how to represent the following java class in DCD:

class Kid
{
	Person mother;    *****
	Person father;
}

speculating that the answer is 

<ElementDef Type="Kid">
	<Element>Person</Element>
	<Element>Person</Element>
</ElementDef>

<ElementDef Type="Person">
 	<Element>Name</Element>
 	<Element>Address</Element>
</ElementDef>

but then saying '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 (*****).'

The key to the solution is to realize that of the items in the problem, two
are object types (Kid and Person) while two are relations between objects
(mother and father).   Your proposed solution doesn't quite have enought
parts, and the relation between the parts is not explicit. You can find a
proposal by me for this sort of problem at the W3c
(http://www.w3.org/TandS/QL/QL98/pp/microsoft-serializing.html).  Here is an
example of instance data reflecting a Kid and his mother and father:

  <Person id="Jane" />

  <Person id="Leroy" />

  <Kid mother="Jane" father="Leroy" />  

I'm not familiar enough with DCD to write the schema in DCD notation, so let
me write it in XML-Data notation; I'm sure you can make the translation:

  <ElementType name="Person" >
	<AttributeType name="id" dt:type="id" />     <attribute type="id" />
  <ElementType>

  <ElementType name="Kid" >
	<AttributeType name="mother" dt:type="idref" />     <attribute
type="mother" />
	<AttributeType name="father" dt:type="idref" />     <attribute
type="father" />
  <ElementType>


I hope this is helpful,

Andrew Layman

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


PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.