-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathNamespace.java
More file actions
35 lines (32 loc) · 1.34 KB
/
Namespace.java
File metadata and controls
35 lines (32 loc) · 1.34 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
// Generated automatically from org.dom4j.Namespace for testing purposes
package org.dom4j;
import org.dom4j.Element;
import org.dom4j.Node;
import org.dom4j.Visitor;
import org.dom4j.tree.AbstractNode;
import org.dom4j.tree.NamespaceCache;
public class Namespace extends AbstractNode
{
protected Namespace() {}
protected Node createXPathResult(Element p0){ return null; }
protected int createHashCode(){ return 0; }
protected static NamespaceCache cache = null;
public Namespace(String p0, String p1){}
public String asXML(){ return null; }
public String getPath(Element p0){ return null; }
public String getPrefix(){ return null; }
public String getStringValue(){ return null; }
public String getText(){ return null; }
public String getURI(){ return null; }
public String getUniquePath(Element p0){ return null; }
public String getXPathNameStep(){ return null; }
public String toString(){ return null; }
public boolean equals(Object p0){ return false; }
public int hashCode(){ return 0; }
public short getNodeType(){ return 0; }
public static Namespace NO_NAMESPACE = null;
public static Namespace XML_NAMESPACE = null;
public static Namespace get(String p0){ return null; }
public static Namespace get(String p0, String p1){ return null; }
public void accept(Visitor p0){}
}