-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathNode.java
More file actions
60 lines (57 loc) · 1.73 KB
/
Node.java
File metadata and controls
60 lines (57 loc) · 1.73 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// Generated automatically from org.dom4j.Node for testing purposes
package org.dom4j;
import java.io.Writer;
import java.util.List;
import org.dom4j.Document;
import org.dom4j.Element;
import org.dom4j.Visitor;
import org.dom4j.XPath;
public interface Node extends Cloneable
{
Document getDocument();
Element getParent();
List selectNodes(String p0);
List selectNodes(String p0, String p1);
List selectNodes(String p0, String p1, boolean p2);
Node asXPathResult(Element p0);
Node detach();
Node selectSingleNode(String p0);
Number numberValueOf(String p0);
Object clone();
Object selectObject(String p0);
String asXML();
String getName();
String getNodeTypeName();
String getPath();
String getPath(Element p0);
String getStringValue();
String getText();
String getUniquePath();
String getUniquePath(Element p0);
String valueOf(String p0);
XPath createXPath(String p0);
boolean hasContent();
boolean isReadOnly();
boolean matches(String p0);
boolean supportsParent();
short getNodeType();
static short ANY_NODE = 0;
static short ATTRIBUTE_NODE = 0;
static short CDATA_SECTION_NODE = 0;
static short COMMENT_NODE = 0;
static short DOCUMENT_NODE = 0;
static short DOCUMENT_TYPE_NODE = 0;
static short ELEMENT_NODE = 0;
static short ENTITY_REFERENCE_NODE = 0;
static short MAX_NODE_TYPE = 0;
static short NAMESPACE_NODE = 0;
static short PROCESSING_INSTRUCTION_NODE = 0;
static short TEXT_NODE = 0;
static short UNKNOWN_NODE = 0;
void accept(Visitor p0);
void setDocument(Document p0);
void setName(String p0);
void setParent(Element p0);
void setText(String p0);
void write(Writer p0);
}