Uses of Class
org.dom4j.DocumentFactory
Packages that use DocumentFactory
Package
Description
Defines the XML Document Object Model in Java interfaces together with some helper classes.
An implementation of the dom4j API which allows JavaBeans to be used to store and retrieve attribute values from Element.
An implementation of the dom4j API which also supports the W3C object model.
Provides input and output via SAX and DOM together with writing dom4j objects to streams as XML text.
Contains the default implementations of the dom4j Document Object Model together with some helpful base classes for those wishing to implement their own document object model.
A collection of utility classes for the dom4j API.
-
Uses of DocumentFactory in org.dom4j
Methods in org.dom4j that return DocumentFactoryModifier and TypeMethodDescriptionprotected static DocumentFactory
DocumentFactory.createSingleton
(String className) createSingleton
creates the singleton instance from the given class name.QName.getDocumentFactory()
DOCUMENT ME!static DocumentFactory
DocumentFactory.getInstance()
Access to singleton implementation of DocumentFactory which is used if no DocumentFactory is specified when building using the standard builders.Methods in org.dom4j with parameters of type DocumentFactory -
Uses of DocumentFactory in org.dom4j.bean
Subclasses of DocumentFactory in org.dom4j.beanModifier and TypeClassDescriptionclass
BeanDocumentFactory
is a factory of DOM4J objects which may be BeanElements which are backed by JavaBeans and their properties.Methods in org.dom4j.bean that return DocumentFactoryModifier and TypeMethodDescriptionprotected DocumentFactory
BeanElement.getDocumentFactory()
static DocumentFactory
BeanDocumentFactory.getInstance()
Access to the singleton instance of this factory. -
Uses of DocumentFactory in org.dom4j.dom
Subclasses of DocumentFactory in org.dom4j.domModifier and TypeClassDescriptionclass
DOMDocumentFactory
is a factory of DOM4J objects which implement the W3C DOM API.Methods in org.dom4j.dom that return DocumentFactoryModifier and TypeMethodDescriptionprotected DocumentFactory
DOMDocument.getDocumentFactory()
protected DocumentFactory
DOMElement.getDocumentFactory()
static DocumentFactory
DOMDocumentFactory.getInstance()
Access to the singleton instance of this factory. -
Uses of DocumentFactory in org.dom4j.io
Methods in org.dom4j.io that return DocumentFactoryModifier and TypeMethodDescriptionDOMReader.getDocumentFactory()
DOCUMENT ME!SAXModifier.getDocumentFactory()
Get theDocumentFactory
used to create the DOM4J document structureSAXReader.getDocumentFactory()
DOCUMENT ME!Methods in org.dom4j.io with parameters of type DocumentFactoryModifier and TypeMethodDescriptionvoid
DOMReader.setDocumentFactory
(DocumentFactory docFactory) This sets theDocumentFactory
used to create new documents.void
SAXModifier.setDocumentFactory
(DocumentFactory factory) Sets theDocumentFactory
used to create the DOM4J document tree.void
SAXReader.setDocumentFactory
(DocumentFactory documentFactory) This sets theDocumentFactory
used to create new documents.void
STAXEventReader.setDocumentFactory
(DocumentFactory documentFactory) Sets the DocumentFactory to be used when constructing DOM4J nodes.Constructors in org.dom4j.io with parameters of type DocumentFactoryModifierConstructorDescriptionDOMReader
(DocumentFactory factory) SAXContentHandler
(DocumentFactory documentFactory) SAXContentHandler
(DocumentFactory documentFactory, ElementHandler elementHandler) SAXContentHandler
(DocumentFactory documentFactory, ElementHandler elementHandler, org.dom4j.io.ElementStack elementStack) SAXReader
(DocumentFactory factory) This method internally callsSAXParserFactory
.newInstance().newSAXParser().getXMLReader()
orXMLReaderFactory.createXMLReader()
.SAXReader
(DocumentFactory factory, boolean validating) This method internally callsSAXParserFactory
.newInstance().newSAXParser().getXMLReader()
orXMLReaderFactory.createXMLReader()
.STAXEventReader
(DocumentFactory factory) Constructs aSTAXEventReader
instance that uses the specifiedDocumentFactory
to construct DOM4JNode
s. -
Uses of DocumentFactory in org.dom4j.tree
Methods in org.dom4j.tree that return DocumentFactoryModifier and TypeMethodDescriptionprotected DocumentFactory
AbstractElement.getDocumentFactory()
protected DocumentFactory
AbstractNode.getDocumentFactory()
protected DocumentFactory
DefaultDocument.getDocumentFactory()
protected DocumentFactory
DefaultElement.getDocumentFactory()
NamespaceStack.getDocumentFactory()
Methods in org.dom4j.tree with parameters of type DocumentFactoryModifier and TypeMethodDescriptionvoid
DefaultDocument.setDocumentFactory
(DocumentFactory documentFactory) void
NamespaceStack.setDocumentFactory
(DocumentFactory documentFactory) Constructors in org.dom4j.tree with parameters of type DocumentFactoryModifierConstructorDescriptionNamespaceStack
(DocumentFactory documentFactory) QNameCache
(DocumentFactory documentFactory) -
Uses of DocumentFactory in org.dom4j.util
Subclasses of DocumentFactory in org.dom4j.utilModifier and TypeClassDescriptionclass
IndexedDocumentFactory
is a factory of XML objects which create indexed Element implementations to allow quicker lookup via name of Element and Attributes though at the expense of more memory used to create the name indexes.class
NonLazyDocumentFactory
is a factory of XML objects which avoid using the lazy creation pattern.class
UserDataDocumentFactory
is a factory of XML objects which support the adornment of a user data object on an Element or Attribute instance such that the methodsgetData()
andsetData()
will get and set the values of a user data object.Methods in org.dom4j.util that return DocumentFactoryModifier and TypeMethodDescriptionstatic DocumentFactory
IndexedDocumentFactory.getInstance()
Access to the singleton instance of this factory.static DocumentFactory
NonLazyDocumentFactory.getInstance()
Access to the singleton instance of this factory.static DocumentFactory
UserDataDocumentFactory.getInstance()
Access to the singleton instance of this factory.protected DocumentFactory
ProxyDocumentFactory.getProxy()
Methods in org.dom4j.util with parameters of type DocumentFactoryModifier and TypeMethodDescriptionprotected void
ProxyDocumentFactory.setProxy
(DocumentFactory proxy) Constructors in org.dom4j.util with parameters of type DocumentFactory