-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathDocument.java
More file actions
52 lines (49 loc) · 1.77 KB
/
Document.java
File metadata and controls
52 lines (49 loc) · 1.77 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
// Generated automatically from org.w3c.dom.Document for testing purposes
package org.w3c.dom;
import org.w3c.dom.Attr;
import org.w3c.dom.CDATASection;
import org.w3c.dom.Comment;
import org.w3c.dom.DOMConfiguration;
import org.w3c.dom.DOMImplementation;
import org.w3c.dom.DocumentFragment;
import org.w3c.dom.DocumentType;
import org.w3c.dom.Element;
import org.w3c.dom.EntityReference;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.w3c.dom.ProcessingInstruction;
import org.w3c.dom.Text;
public interface Document extends Node
{
Attr createAttribute(String p0);
Attr createAttributeNS(String p0, String p1);
CDATASection createCDATASection(String p0);
Comment createComment(String p0);
DOMConfiguration getDomConfig();
DOMImplementation getImplementation();
DocumentFragment createDocumentFragment();
DocumentType getDoctype();
Element createElement(String p0);
Element createElementNS(String p0, String p1);
Element getDocumentElement();
Element getElementById(String p0);
EntityReference createEntityReference(String p0);
Node adoptNode(Node p0);
Node importNode(Node p0, boolean p1);
Node renameNode(Node p0, String p1, String p2);
NodeList getElementsByTagName(String p0);
NodeList getElementsByTagNameNS(String p0, String p1);
ProcessingInstruction createProcessingInstruction(String p0, String p1);
String getDocumentURI();
String getInputEncoding();
String getXmlEncoding();
String getXmlVersion();
Text createTextNode(String p0);
boolean getStrictErrorChecking();
boolean getXmlStandalone();
void normalizeDocument();
void setDocumentURI(String p0);
void setStrictErrorChecking(boolean p0);
void setXmlStandalone(boolean p0);
void setXmlVersion(String p0);
}