-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathXPath.java
More file actions
28 lines (25 loc) · 873 Bytes
/
XPath.java
File metadata and controls
28 lines (25 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Generated automatically from org.jaxen.XPath for testing purposes
package org.jaxen;
import java.util.List;
import org.jaxen.FunctionContext;
import org.jaxen.NamespaceContext;
import org.jaxen.Navigator;
import org.jaxen.VariableContext;
public interface XPath
{
FunctionContext getFunctionContext();
List selectNodes(Object p0);
NamespaceContext getNamespaceContext();
Navigator getNavigator();
Number numberValueOf(Object p0);
Object evaluate(Object p0);
Object selectSingleNode(Object p0);
String stringValueOf(Object p0);
String valueOf(Object p0);
VariableContext getVariableContext();
boolean booleanValueOf(Object p0);
void addNamespace(String p0, String p1);
void setFunctionContext(FunctionContext p0);
void setNamespaceContext(NamespaceContext p0);
void setVariableContext(VariableContext p0);
}