Package org.apache.xalan.xsltc.dom

Examples of org.apache.xalan.xsltc.dom.SingletonIterator


     */
    public static NodeIterator referenceToNodeSet(Object obj) {
  try {
      return (obj instanceof Node == false)
    ? (NodeIterator) obj
    : (NodeIterator) new SingletonIterator(((Node) obj).node);
  }
  catch (ClassCastException e) {
      runTimeTypeError("reference", "node-set");
      return null;
  }
View Full Code Here


     * Utility function: used with nth position filters to convert a sequence
     * of nodes to just one single node (the one at position n).
     */
    public static NodeIterator getSingleNode(NodeIterator iterator) {
  int node = iterator.next();
  return(new SingletonIterator(node));
    }
View Full Code Here

TOP

Related Classes of org.apache.xalan.xsltc.dom.SingletonIterator

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.