Uses of Class
org.htmlunit.xpath.xml.dtm.DTMManager
-
Packages that use DTMManager Package Description org.htmlunit.xpath Implementation of XPath; for the most part, only classes meant for public use are found at this root level of the XPath packages.org.htmlunit.xpath.axes Implementation of XPath LocationPath support -- primary classes are LocPathIterator and UnionPathIterator.org.htmlunit.xpath.objects Implementation of XPath polymorphic type objects -- this package will grow as XPath objects are expanded to support XML Schema data types.org.htmlunit.xpath.xml.dtm org.htmlunit.xpath.xml.dtm.ref org.htmlunit.xpath.xml.dtm.ref.dom2dtm -
-
Uses of DTMManager in org.htmlunit.xpath
Subclasses of DTMManager in org.htmlunit.xpath Modifier and Type Class Description class
XPathContext
Default class for the runtime execution context for XPath.Fields in org.htmlunit.xpath declared as DTMManager Modifier and Type Field Description protected DTMManager
XPathContext. m_dtmManager
Though XPathContext context extends the DTMManager, it really is a proxy for this object, which is the real DTMManager.(package private) DTMManager
NodeSetDTM. m_manager
Methods in org.htmlunit.xpath that return DTMManager Modifier and Type Method Description DTMManager
NodeSetDTM. getDTMManager()
Get an instance of the DTMManager.DTMManager
XPathContext. getDTMManager()
Return the DTMManager object.Constructors in org.htmlunit.xpath with parameters of type DTMManager Constructor Description NodeSetDTM(DTMManager dtmManager)
Create an empty nodelist. -
Uses of DTMManager in org.htmlunit.xpath.axes
Fields in org.htmlunit.xpath.axes declared as DTMManager Modifier and Type Field Description protected DTMManager
NodeSequence. m_dtmMgr
The DTMManager to use if we're using a NodeVector only.Methods in org.htmlunit.xpath.axes that return DTMManager Modifier and Type Method Description DTMManager
LocPathIterator. getDTMManager()
Get an instance of the DTMManager.DTMManager
NodeSequence. getDTMManager()
Get an instance of the DTMManager. -
Uses of DTMManager in org.htmlunit.xpath.objects
Constructors in org.htmlunit.xpath.objects with parameters of type DTMManager Constructor Description XNodeSet(DTMManager dtmMgr)
Construct an empty XNodeSet object. -
Uses of DTMManager in org.htmlunit.xpath.xml.dtm
Methods in org.htmlunit.xpath.xml.dtm that return DTMManager Modifier and Type Method Description DTMManager
DTMIterator. getDTMManager()
Get an instance of the DTMManager.static DTMManager
DTMManager. newInstance()
Obtain a new instance of aDTMManager
. -
Uses of DTMManager in org.htmlunit.xpath.xml.dtm.ref
Subclasses of DTMManager in org.htmlunit.xpath.xml.dtm.ref Modifier and Type Class Description class
DTMManagerDefault
The default implementation for the DTMManager.Fields in org.htmlunit.xpath.xml.dtm.ref declared as DTMManager Modifier and Type Field Description DTMManager
DTMDefaultBase. m_mgr
The DTM manager who "owns" this DTM.Methods in org.htmlunit.xpath.xml.dtm.ref that return DTMManager Modifier and Type Method Description DTMManager
DTMDefaultBase. getManager()
Query which DTMManager this DTM is currently being handled by.Constructors in org.htmlunit.xpath.xml.dtm.ref with parameters of type DTMManager Constructor Description DTMDefaultBase(DTMManager mgr, javax.xml.transform.Source source, int dtmIdentity, boolean doIndexing)
Construct a DTMDefaultBase object using the default block size.DTMDefaultBase(DTMManager mgr, javax.xml.transform.Source source, int dtmIdentity, boolean doIndexing, int blocksize, boolean usePrevsib)
Construct a DTMDefaultBase object from a DOM node.DTMDefaultBaseIterators(DTMManager mgr, javax.xml.transform.Source source, int dtmIdentity, boolean doIndexing)
Construct a DTMDefaultBaseTraversers object from a DOM node.DTMDefaultBaseTraversers(DTMManager mgr, javax.xml.transform.Source source, int dtmIdentity, boolean doIndexing)
Construct a DTMDefaultBaseTraversers object from a DOM node. -
Uses of DTMManager in org.htmlunit.xpath.xml.dtm.ref.dom2dtm
Constructors in org.htmlunit.xpath.xml.dtm.ref.dom2dtm with parameters of type DTMManager Constructor Description DOM2DTM(DTMManager mgr, javax.xml.transform.dom.DOMSource domSource, int dtmIdentity, boolean doIndexing)
Construct a DOM2DTM object from a DOM node.
-