DTMIterator.getDTMManager
Code IndexAdd Codota to your IDE (free)

Best Java code snippets using org.apache.xml.dtm.DTMIterator.getDTMManager (Showing top 11 results out of 315)

  • Common ways to obtain DTMIterator
private void myMethod () {
DTMIterator d =
  • XObject arg;arg.iter()
  • XPathContext xctxt;xctxt.getContextNodeList()
  • Expression m_selectExpression;XPathContext xctxt;m_selectExpression.asIterator(xctxt, contextNode)
  • Smart code suggestions by Codota
}
origin: robovm/robovm

/**
 * Create a NodeSetDTM, and copy the members of the
 * given DTMIterator into it.
 *
 * @param ni Iterator which yields Nodes to be made members of the new set.
 */
public NodeSetDTM(DTMIterator ni)
{
 super();
 m_manager = ni.getDTMManager();
 m_root = ni.getRoot();
 addNodes(ni);
}

origin: xalan/xalan

/**
 * Create a NodeSetDTM, and copy the members of the
 * given DTMIterator into it.
 *
 * @param ni Iterator which yields Nodes to be made members of the new set.
 */
public NodeSetDTM(DTMIterator ni)
{
 super();
 m_manager = ni.getDTMManager();
 m_root = ni.getRoot();
 addNodes(ni);
}
 
origin: com.mobidevelop.robovm/robovm-rt

/**
 * Create a NodeSetDTM, and copy the members of the
 * given DTMIterator into it.
 *
 * @param ni Iterator which yields Nodes to be made members of the new set.
 */
public NodeSetDTM(DTMIterator ni)
{
 super();
 m_manager = ni.getDTMManager();
 m_root = ni.getRoot();
 addNodes(ni);
}

origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.xalan

/**
 * Create a NodeSetDTM, and copy the members of the
 * given DTMIterator into it.
 *
 * @param ni Iterator which yields Nodes to be made members of the new set.
 */
public NodeSetDTM(DTMIterator ni)
{
 super();
 m_manager = ni.getDTMManager();
 m_root = ni.getRoot();
 addNodes(ni);
}
 
origin: MobiVM/robovm

/**
 * Create a NodeSetDTM, and copy the members of the
 * given DTMIterator into it.
 *
 * @param ni Iterator which yields Nodes to be made members of the new set.
 */
public NodeSetDTM(DTMIterator ni)
{
 super();
 m_manager = ni.getDTMManager();
 m_root = ni.getRoot();
 addNodes(ni);
}

origin: ibinti/bugvm

/**
 * Create a NodeSetDTM, and copy the members of the
 * given DTMIterator into it.
 *
 * @param ni Iterator which yields Nodes to be made members of the new set.
 */
public NodeSetDTM(DTMIterator ni)
{
 super();
 m_manager = ni.getDTMManager();
 m_root = ni.getRoot();
 addNodes(ni);
}

origin: com.gluonhq/robovm-rt

/**
 * Create a NodeSetDTM, and copy the members of the
 * given DTMIterator into it.
 *
 * @param ni Iterator which yields Nodes to be made members of the new set.
 */
public NodeSetDTM(DTMIterator ni)
{
 super();
 m_manager = ni.getDTMManager();
 m_root = ni.getRoot();
 addNodes(ni);
}

origin: org.apache.xalan/com.springsource.org.apache.xalan

/**
 * Create a NodeSetDTM, and copy the members of the
 * given DTMIterator into it.
 *
 * @param ni Iterator which yields Nodes to be made members of the new set.
 */
public NodeSetDTM(DTMIterator ni)
{
 super();
 m_manager = ni.getDTMManager();
 m_root = ni.getRoot();
 addNodes(ni);
}
 
origin: com.bugvm/bugvm-rt

/**
 * Create a NodeSetDTM, and copy the members of the
 * given DTMIterator into it.
 *
 * @param ni Iterator which yields Nodes to be made members of the new set.
 */
public NodeSetDTM(DTMIterator ni)
{
 super();
 m_manager = ni.getDTMManager();
 m_root = ni.getRoot();
 addNodes(ni);
}

origin: org.apache.karaf.bundles/org.apache.karaf.bundles.xalan-2.7.1

/**
 * Create a NodeSetDTM, and copy the members of the
 * given DTMIterator into it.
 *
 * @param ni Iterator which yields Nodes to be made members of the new set.
 */
public NodeSetDTM(DTMIterator ni)
{
 super();
 m_manager = ni.getDTMManager();
 m_root = ni.getRoot();
 addNodes(ni);
}
 
origin: FlexoVM/flexovm

/**
 * Create a NodeSetDTM, and copy the members of the
 * given DTMIterator into it.
 *
 * @param ni Iterator which yields Nodes to be made members of the new set.
 */
public NodeSetDTM(DTMIterator ni)
{
 super();
 m_manager = ni.getDTMManager();
 m_root = ni.getRoot();
 addNodes(ni);
}

org.apache.xml.dtmDTMIteratorgetDTMManager

Javadoc

Get an instance of the DTMManager. Since a node iterator may be passed without a DTMManager, this allows the caller to easily get the DTMManager using just the iterator.

Popular methods of DTMIterator

  • getDTM
    Get an instance of a DTM that "owns" a node handle. Since a node iterator may be passed without a DT
  • nextNode
    Returns the next node in the set and advances the position of the iterator in the set. After a DTMIt
  • getCurrentPos
    Get the current position within the cached list, which is one less than the next nextNode() call wil
  • getLength
    The number of nodes in the list. The range of valid child node indices is 0 to length-1 inclusive.
  • getCurrentNode
    Get the current node in the iterator. Note that this differs from the DOM's NodeIterator, where the
  • allowDetachToRelease
    Specify if it's OK for detach to release the iterator for reuse.
  • clone
    Get a clone of this iterator, but don't reset the iteration in the process, so that it may be used f
  • cloneWithReset
    Get a cloned Iterator that is reset to the start of the iteration.
  • detach
    Detaches the DTMIterator from the set which it iterated over, releasing any computational resources
  • getAxis
    Returns the axis being iterated, if it is known.
  • getExpandEntityReferences
    The value of this flag determines whether the children of entity reference nodes are visible to the
  • getRoot
    The root node of the DTMIterator, as specified when it was created. Note the root node is not the ro
  • getExpandEntityReferences,
  • getRoot,
  • getWhatToShow,
  • isDocOrdered,
  • item,
  • previousNode,
  • reset,
  • runTo,
  • setCurrentPos

Popular in Java

  • Making http requests using okhttp
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getSharedPreferences (Context)
  • getSupportFragmentManager (FragmentActivity)
    Return the FragmentManager for interacting with fragments associated with this activity.
  • HttpServer (com.sun.net.httpserver)
    This class implements a simple HTTP server. A HttpServer is bound to an IP address and port number a
  • BufferedInputStream (java.io)
    A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the i
  • Iterator (java.util)
    An iterator over a sequence of objects, such as a collection.If a collection has been changed since
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables u
  • BoxLayout (javax.swing)
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,

For IntelliJ IDEA,
Android Studio or Eclipse

  • Search for JavaScript code betaCodota IntelliJ IDEA pluginCodota Android Studio pluginCode IndexSign in
  • EnterpriseFAQAboutBlogContact Us
  • Plugin user guideTerms of usePrivacy policyCodeboxFind Usages
Add Codota to your IDE (free)