Searched refs:XPathFactory (Results 1 - 3 of 3) sorted by relevance

/libcore/luni/src/main/java/javax/xml/xpath/
H A DXPathFactory.java17 // $Id: XPathFactory.java 888889 2009-12-09 17:43:18Z mrglavas $
22 * <p>An <code>XPathFactory</code> instance can be used to create
32 public abstract class XPathFactory { class
38 public static final String DEFAULT_PROPERTY_NAME = "javax.xml.xpath.XPathFactory";
48 * should be used to create a new instance of an <code>XPathFactory</code>.</p>
50 protected XPathFactory() { method in class:XPathFactory
54 * <p>Get a new <code>XPathFactory</code> instance using the default object model,
65 * @return Instance of an <code>XPathFactory</code>.
67 public static final XPathFactory newInstance() {
73 "XPathFactory#newInstanc
[all...]
H A DXPathFactoryFinder.java36 * Implementation of {@link XPathFactory#newInstance(String)}.
132 * <p>Creates a new {@link XPathFactory} object for the specified
143 public XPathFactory newFactory(String uri) {
147 XPathFactory f = _newFactory(uri);
159 * <p>Lookup a {@link XPathFactory} for the given object model.</p>
163 private XPathFactory _newFactory(String uri) {
164 XPathFactory xpf;
214 if(uri.equals(XPathFactory.DEFAULT_OBJECT_MODEL_URI)) {
232 XPathFactory createInstance( String className ) {
243 if( o instanceof XPathFactory )
[all...]
/libcore/luni/src/test/java/libcore/xml/
H A DJaxenXPathTestSuite.java35 import javax.xml.xpath.XPathFactory;
122 XPath xpath = XPathFactory.newInstance().newXPath();
229 XPath xpath = XPathFactory.newInstance().newXPath();

Completed in 44 milliseconds