1 50 51 package org.openlaszlo.iv.flash.xml; 52 53 import java.util.Iterator ; 54 import org.w3c.dom.*; 55 import javax.xml.transform.TransformerException ; 56 57 64 public interface XPathProcessor { 65 66 74 public Iterator selectNodeList( String expr, Node node ) throws TransformerException ; 75 76 84 public Node selectSingleNode( String expr, Node node ) throws TransformerException ; 85 } 86 87 88 | Popular Tags |