1 package org.apache.velocity.anakia; 2 3 18 19 import java.util.List ; 20 21 import org.jdom.Document; 22 import org.jdom.Element; 23 24 69 public class XPathTool 70 { 71 75 public XPathTool() 76 { 77 } 80 81 89 public NodeList applyTo(String xpathSpec, 90 Document doc) 91 { 92 return new NodeList(XPathCache.getXPath(xpathSpec).applyTo( doc ), false); 94 } 95 96 104 public NodeList applyTo(String xpathSpec, 105 Element elem) 106 { 107 return new NodeList(XPathCache.getXPath(xpathSpec).applyTo( elem ), false); 109 } 110 111 119 public NodeList applyTo(String xpathSpec, 120 List nodeSet) 121 { 122 return new NodeList(XPathCache.getXPath(xpathSpec).applyTo( nodeSet ), false); 124 } 125 } 126 127 128 129 | Popular Tags |