Uses of Interface
com.sun.xml.tree.ElementFactory

Packages that use ElementFactory
com.sun.xml.tree This package supports in-memory XML documents in the form of a parse tree compliant with the W3C DOM Level 1 Core Recommendation, with extensions including support for XML Namespaces as defined by the current XML proposed recommendation. 
 

Uses of ElementFactory in com.sun.xml.tree
 

Subinterfaces of ElementFactory in com.sun.xml.tree
 interface DocumentEx
          This interface extends the DOM Document model in several useful ways.
 

Classes in com.sun.xml.tree that implement ElementFactory
 class SimpleElementFactory
          This is a convenience class for creating application-specific elements associated with specified (or default) XML namespaces.
 class XmlDocument
          This class implements the DOM Document interface, and also provides static factory methods to create document instances.
 

Methods in com.sun.xml.tree that return ElementFactory
 ElementFactory XmlDocument.getElementFactory()
          Returns the element factory to be used by this document.
 ElementFactory XmlDocumentBuilder.getElementFactory()
          Returns the factory to be associated with documents produced by this builder.
 ElementFactory DocumentEx.getElementFactory()
          Returns the element factory to be used by this document.
 

Methods in com.sun.xml.tree with parameters of type ElementFactory
 void XmlDocument.setElementFactory(ElementFactory factory)
          Assigns the element factory to be used by this document.
 void XmlDocumentBuilder.setElementFactory(ElementFactory factory)
          Assigns the factory to be associated with documents produced by this builder.
 void DocumentEx.setElementFactory(ElementFactory factory)
          Assigns the element factory to be used by this document.
 



Submit Feedback to xml-feedback@java.sun.com