DocumentImpl.java
6.97 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.xfa.dom;
import com.adobe.xfa.Document;
import com.adobe.xfa.Element;
import com.adobe.xfa.Node;
import com.adobe.xfa.dom.ElementImpl;
import com.adobe.xfa.dom.NodeImpl;
import com.adobe.xfa.dom.ParentNode;
import com.adobe.xfa.dom.XFANodeHolder;
import org.w3c.dom.Attr;
import org.w3c.dom.CDATASection;
import org.w3c.dom.Comment;
import org.w3c.dom.DOMConfiguration;
import org.w3c.dom.DOMException;
import org.w3c.dom.DOMImplementation;
import org.w3c.dom.DocumentFragment;
import org.w3c.dom.DocumentType;
import org.w3c.dom.EntityReference;
import org.w3c.dom.NodeList;
import org.w3c.dom.ProcessingInstruction;
import org.w3c.dom.Text;
class DocumentImpl
extends ParentNode
implements org.w3c.dom.Document {
static final String XML_VERSION = "1.1";
private ElementImpl mDocumentElement;
private final Document mXFADoc;
DocumentImpl(Document xfaDoc) {
super(null, xfaDoc);
this.mXFADoc = xfaDoc;
}
@Override
public org.w3c.dom.Node adoptNode(org.w3c.dom.Node source) throws DOMException {
throw new DOMException(7, "");
}
@Override
public Attr createAttribute(String name) throws DOMException {
return null;
}
@Override
public Attr createAttributeNS(String namespaceURI, String localName) throws DOMException {
return null;
}
@Override
public CDATASection createCDATASection(String data) throws DOMException {
return null;
}
@Override
public Comment createComment(String data) {
return null;
}
@Override
public DocumentFragment createDocumentFragment() {
return null;
}
@Override
public org.w3c.dom.Element createElement(String name) throws DOMException {
return null;
}
@Override
public org.w3c.dom.Element createElementNS(String namespaceURI, String localName) throws DOMException {
return null;
}
@Override
public EntityReference createEntityReference(String name) throws DOMException {
return null;
}
@Override
public ProcessingInstruction createProcessingInstruction(String target, String data) throws DOMException {
return null;
}
@Override
public Text createTextNode(String data) {
return null;
}
@Override
public DocumentType getDoctype() {
return null;
}
@Override
public org.w3c.dom.Element getDocumentElement() {
return this.mDocumentElement;
}
@Override
public String getDocumentURI() {
return null;
}
@Override
public DOMConfiguration getDomConfig() {
return null;
}
@Override
public org.w3c.dom.Element getElementById(String elementId) {
assert (this.mXFADoc != null);
ElementImpl result = null;
Element xfaElement = this.mXFADoc.getElementByXMLId(elementId);
if (xfaElement != null) {
NodeImpl mappedNode = this.attachNode(xfaElement);
assert (mappedNode != null);
assert (mappedNode instanceof ElementImpl);
result = (ElementImpl)mappedNode;
}
return result;
}
@Override
public NodeList getElementsByTagName(String name) {
assert (this.mDocumentElement != null);
return this.mDocumentElement.getElementsByTagName(name);
}
@Override
public NodeList getElementsByTagNameNS(String namespaceURI, String localName) {
assert (this.mDocumentElement != null);
return this.mDocumentElement.getElementsByTagNameNS(namespaceURI, localName);
}
@Override
public DOMImplementation getImplementation() {
return null;
}
@Override
public String getInputEncoding() {
return null;
}
@Override
public boolean getStrictErrorChecking() {
return false;
}
@Override
public String getXmlEncoding() {
return null;
}
@Override
public boolean getXmlStandalone() {
return false;
}
@Override
public String getXmlVersion() {
return "1.1";
}
@Override
public org.w3c.dom.Node importNode(org.w3c.dom.Node arg0, boolean arg1) throws DOMException {
throw new DOMException(9, "");
}
@Override
public boolean isDefaultNamespace(String namespaceURI) {
assert (this.mDocumentElement != null);
return this.mDocumentElement.isDefaultNamespace(namespaceURI);
}
@Override
public boolean isEqualNode(org.w3c.dom.Node other) {
if (this == other) {
return true;
}
if (!super.isEqualNode(other)) {
return false;
}
if (!(other instanceof DocumentImpl)) {
return false;
}
return true;
}
@Override
public void normalizeDocument() {
}
@Override
public org.w3c.dom.Node renameNode(org.w3c.dom.Node n, String namespaceURI, String qualifiedName) throws DOMException {
throw new DOMException(7, "");
}
@Override
public void setDocumentURI(String documentURI) {
}
@Override
public void setStrictErrorChecking(boolean strictErrorChecking) {
}
@Override
public void setXmlStandalone(boolean xmlStandalone) throws DOMException {
}
@Override
public void setXmlVersion(String xmlVersion) throws DOMException {
}
@Override
public String getNodeName() {
return "#document";
}
@Override
public short getNodeType() {
return 9;
}
@Override
public String lookupNamespaceURI(String prefix) {
String result = null;
if (this.mDocumentElement != null) {
result = this.mDocumentElement.lookupNamespaceURI(prefix);
}
return result;
}
@Override
public String lookupPrefix(String namespaceURI) {
String result = null;
if (this.mDocumentElement != null) {
result = this.mDocumentElement.lookupPrefix(namespaceURI);
}
return result;
}
org.w3c.dom.Node attach(Node xfaNode) {
if (xfaNode instanceof Document) {
return xfaNode == this.mXFADoc ? this : null;
}
return this.attachNode(xfaNode);
}
void setDocumentElement(ElementImpl documentElement) {
assert (this.mDocumentElement == null);
this.mDocumentElement = documentElement;
}
@Override
boolean testDefaultNamespace(String namespaceURI) {
return false;
}
private NodeImpl attachNode(Node xfaNode) {
if (xfaNode instanceof Document) {
assert (xfaNode == this.mXFADoc);
return this;
}
Element xfaParent = DocumentImpl.getXFAParent(xfaNode);
if (xfaParent == null) {
return null;
}
NodeImpl parentNode = this.attachNode(xfaParent);
if (parentNode == null) {
return null;
}
assert (parentNode instanceof ParentNode);
ParentNode parent = (ParentNode)parentNode;
return parent.lookupXFAChild(xfaNode);
}
}