Optional Nodes in the DOM

david at megginson.com david at megginson.com
Mon Nov 2 00:48:58 GMT 1998


Paul Prescod writes:

 > Is there a standard way for the DOM client software to say whether it
 > wants access to CDATA sections or not?

I don't think so -- I'd imagine that that would have to be an option
to the DOM builder, which is left unspecified.  I could imagine
something like this:


  public class DOMFactory
  {
    public final static int NONE = 0;

                        // Optional node types
    public final static int COMMENTS = 1;
    public final static int ENTITYREFS = 2;
    public final static int CDATA = 3;
    public final static int ALL = COMMENTS | ENTITYREFS | CDATA;

    public Document createDocument (int flags)
      throws DOMFactoryException, IOException; // etc.
  }

and then

  Document doc = factory.createDocument(DOMFactory.NONE);

I can also imagine many DOM builders that always leave these nodes
types out, since that information is not needed for most XML
applications (authoring and repository tools excepted).


All the best,


David

-- 
David Megginson                 david at megginson.com
           http://www.megginson.com/

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