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

RE: Confusion while implementing the DOM.

  • From: Miles Sabin <msabin@c...>
  • To: "'xml-dev@i...'" <xml-dev@i...>
  • Date: Wed, 2 Jun 1999 12:53:27 +0100

dom getfirstchild
Andrew Douglas wrote,
<snip/>
> <root>
>   <elone>Hello</elone>
>   <eltwo>Goodbye</eltwo>
>   <elone>Gutten Adbend</elone>
>   <eltwo>Aufwiedersehen</eltwo>
>  </root>
>
> My underlying structure looks like this
>
>
>                         opentag(root)
>                            |
>                        zomcontent
>                |-----------+-----------------|
>            sequence                      sequence
>         |------+-----|                |------+-------|       
> opentag(elone) opentag(eltwo) opentag(elone) opentag(eltwo)
>       |               |              |             |   
>     text            text           text          text
>     
> Not suprisingly, it looks like a tree!  So, all these 
> things can be Nodes, but not all are Elements (opentags 
> are) -- some are probably DocumentFragments(zomcontent, 
> sequence, ...).
>
> So, my DOM implementation has the usual first/last
> Child, getChildNodes, get Next/Previous siblings, and 
> so on, but sometimes these children aren't Elements, 
> but are DocumentFragements.

Ahh ... no, I'm afraid that's not quite right. The DOMs
idea of the structure of your document would be,

  Document doc
    Element root          == doc.getDocumentElement()
      Element elone       == root.getFirstChild()
        Text Hello        == elone.getFirstChild()
      Element eltwo       == elone.getNextSibling()
        Text Goodbye
      Element elone
        Text Gutten Adbend
      Element eltwo
        Text Aufwiedersehen

A Document *never* has a DocumentFragment amongst its
children: the latter exist solely to provide a 
lightweight holder for Nodes which are _owned_by_, but 
not _part_of_ a given Document.

Note that all Nodes that are created on a particular
Document (eg. via Document.createElement()) are always
owned by that Document (and so can't be pasted into a
different doc), but don't become part of it until they're
explicitly added (eg., via someNode.appendChild()).

I hope that helps a bit ...

Cheers,


Miles

-- 
Miles Sabin                          Cromwell Media
Internet Systems Architect           5/6 Glenthorne Mews
+44 (0)181 410 2230                  London, W6 0LJ
msabin@c...           England

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/ and on CD-ROM/ISBN 981-02-3594-1
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.