Package com.caucho.xml

Examples of com.caucho.xml.NodeListImpl


   * @return an array list of the nodes
   */
  public Object evalObject(Node node, ExprEnvironment env)
    throws XPathException
  {
    NodeListImpl list = new NodeListImpl();

    NodeIterator iter = _pattern.select(node, env);

    Node value = null;
    while ((value = iter.nextNode()) != null)
      list.add(value);

    return list;
  }
View Full Code Here


   * @return an array list of the nodes
   */
  public Object evalObject(Node node, ExprEnvironment env)
    throws XPathException
  {
    NodeListImpl list = new NodeListImpl();

    NodeIterator iter = _pattern.select(node, env);

    Node value = null;
    while ((value = iter.nextNode()) != null)
      list.add(value);

    return list;
  }
View Full Code Here

TOP

Related Classes of com.caucho.xml.NodeListImpl

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.