-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathElement.java
More file actions
88 lines (85 loc) · 2.71 KB
/
Element.java
File metadata and controls
88 lines (85 loc) · 2.71 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
// Generated automatically from org.dom4j.Element for testing purposes
package org.dom4j;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import org.dom4j.Attribute;
import org.dom4j.Branch;
import org.dom4j.CDATA;
import org.dom4j.Entity;
import org.dom4j.Namespace;
import org.dom4j.Node;
import org.dom4j.QName;
import org.dom4j.Text;
public interface Element extends Branch
{
Attribute attribute(QName p0);
Attribute attribute(String p0);
Attribute attribute(int p0);
Element addAttribute(QName p0, String p1);
Element addAttribute(String p0, String p1);
Element addCDATA(String p0);
Element addComment(String p0);
Element addEntity(String p0, String p1);
Element addNamespace(String p0, String p1);
Element addProcessingInstruction(String p0, Map p1);
Element addProcessingInstruction(String p0, String p1);
Element addText(String p0);
Element createCopy();
Element createCopy(QName p0);
Element createCopy(String p0);
Element element(QName p0);
Element element(String p0);
Iterator attributeIterator();
Iterator elementIterator();
Iterator elementIterator(QName p0);
Iterator elementIterator(String p0);
List additionalNamespaces();
List attributes();
List declaredNamespaces();
List elements();
List elements(QName p0);
List elements(String p0);
List getNamespacesForURI(String p0);
Namespace getNamespace();
Namespace getNamespaceForPrefix(String p0);
Namespace getNamespaceForURI(String p0);
Node getXPathResult(int p0);
Object getData();
QName getQName();
QName getQName(String p0);
String attributeValue(QName p0);
String attributeValue(QName p0, String p1);
String attributeValue(String p0);
String attributeValue(String p0, String p1);
String elementText(QName p0);
String elementText(String p0);
String elementTextTrim(QName p0);
String elementTextTrim(String p0);
String getNamespacePrefix();
String getNamespaceURI();
String getQualifiedName();
String getStringValue();
String getText();
String getTextTrim();
boolean hasMixedContent();
boolean isRootElement();
boolean isTextOnly();
boolean remove(Attribute p0);
boolean remove(CDATA p0);
boolean remove(Entity p0);
boolean remove(Namespace p0);
boolean remove(Text p0);
int attributeCount();
void add(Attribute p0);
void add(CDATA p0);
void add(Entity p0);
void add(Namespace p0);
void add(Text p0);
void appendAttributes(Element p0);
void setAttributeValue(QName p0, String p1);
void setAttributeValue(String p0, String p1);
void setAttributes(List p0);
void setData(Object p0);
void setQName(QName p0);
}