Package org.apache.xpath.axes

Examples of org.apache.xpath.axes.PredicatedNodeTest


   */
  public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
  {

    // If we're in a predicate, then this will return non-null.
    PredicatedNodeTest iter = (PredicatedNodeTest) xctxt.getSubContextList();
    Node currentNode;

    if (null != iter)
    {
      LocPathIterator lpi = iter.getLocPathIterator();

      currentNode = lpi.getCurrentContextNode();
    }
    else
    {
View Full Code Here

TOP

Related Classes of org.apache.xpath.axes.PredicatedNodeTest

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.