:: com :: sun :: star :: xml :: dom ::

unpublished interface XDocumentBuilder
Description
Builds a new dom tree

Methods' Summary
getDOMImplementation Obtain an instance of a DOMImplementation object.  
isNamespaceAware Indicates whether or not this parser is configured to understand namespaces.  
isValidating Indicates whether or not this parser is configured to validate XML documents.  
newDocument Obtain a new instance of a DOM Document object to build a DOM tree with.  
parse Parse the content of the given InputStream as an XML document and return a new DOM Document object.  
Methods' Details
getDOMImplementation
XDOMImplementation
getDOMImplementation();

Description
Obtain an instance of a DOMImplementation object.
isNamespaceAware
boolean
isNamespaceAware();

Description
Indicates whether or not this parser is configured to understand namespaces.
isValidating
boolean
isValidating();

Description
Indicates whether or not this parser is configured to validate XML documents.
newDocument
XDocument
newDocument();

Description
Obtain a new instance of a DOM Document object to build a DOM tree with.
parse
XDocument
parse( [in] ::com::sun::star::io::XInputStream  is );

Description
Parse the content of the given InputStream as an XML document and return a new DOM Document object.
Top of Page