~ubuntu-branches/ubuntu/maverick/axis/maverick

« back to all changes in this revision

Viewing changes to debian/patches/axis-bz152255.patch

  • Committer: Bazaar Package Importer
  • Author(s): Vladimír Lapáček
  • Date: 2006-09-06 22:31:39 UTC
  • Revision ID: james.westby@ubuntu.com-20060906223139-f1o80297h5a5aan4
Tags: 1.4-0ubuntu1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--- axis-1_2/src/org/apache/axis/SOAPPart.java~ 2005-05-03 20:29:14.000000000 +0100
 
2
+++ axis-1_2/src/org/apache/axis/SOAPPart.java  2005-06-07 11:28:33.000000000 +0100
 
3
@@ -33,6 +33,7 @@
 
4
 import org.w3c.dom.Attr;
 
5
 import org.w3c.dom.CDATASection;
 
6
 import org.w3c.dom.Comment;
 
7
+import org.w3c.dom.DOMConfiguration;
 
8
 import org.w3c.dom.DOMException;
 
9
 import org.w3c.dom.DOMImplementation;
 
10
 import org.w3c.dom.Document;
 
11
@@ -45,6 +46,7 @@
 
12
 import org.w3c.dom.NodeList;
 
13
 import org.w3c.dom.ProcessingInstruction;
 
14
 import org.w3c.dom.Text;
 
15
+import org.w3c.dom.UserDataHandler;
 
16
 import org.xml.sax.InputSource;
 
17
 import org.xml.sax.SAXException;
 
18
 
 
19
@@ -1273,5 +1275,102 @@
 
20
     public boolean isBodyStream() {
 
21
         return (currentForm == SOAPPart.FORM_INPUTSTREAM || currentForm == SOAPPart.FORM_BODYINSTREAM);        
 
22
     }
 
23
+
 
24
+    /**
 
25
+     *  DOM Level 3 stubs
 
26
+     */
 
27
+
 
28
+    public String getBaseURI() {
 
29
+        throw new RuntimeException("not implemented");
 
30
+    }
 
31
+
 
32
+    public boolean getXmlStandalone() {
 
33
+        throw new RuntimeException("not implemented");
 
34
+    }
 
35
+
 
36
+    public Object setUserData(
 
37
+        String key, Object data, UserDataHandler handler) {
 
38
+        throw new RuntimeException("not implemented");
 
39
+    }
 
40
+    
 
41
+    public void setDocumentURI(String documentURI) {
 
42
+        throw new RuntimeException("not implemented");
 
43
+    }
 
44
+
 
45
+    public void setXmlStandalone(boolean xmlStandalone) {
 
46
+        throw new RuntimeException("not implemented");
 
47
+    }
 
48
+
 
49
+    public Node renameNode(Node n, String namespaceURI, String qualifiedName) {
 
50
+        throw new RuntimeException("not implemented");
 
51
+    }
 
52
+
 
53
+    public String getInputEncoding() {
 
54
+        throw new RuntimeException("not implemented");
 
55
+    }
 
56
+
 
57
+    public String getXmlEncoding() {
 
58
+        throw new RuntimeException("not implemented");
 
59
+    }
 
60
+
 
61
+    public void setTextContent(String textContent) {
 
62
+        throw new RuntimeException("not implemented");
 
63
+    }
 
64
+
 
65
+    public boolean isSameNode(Node other) {
 
66
+        throw new RuntimeException("not implemented");
 
67
+    }
 
68
+
 
69
+    public String getDocumentURI() {
 
70
+        throw new RuntimeException("not implemented");
 
71
+    }
 
72
+
 
73
+    public Object getFeature(String feature, String version) {
 
74
+        throw new RuntimeException("not implemented");
 
75
+    }
 
76
+
 
77
+    public boolean isDefaultNamespace(String namespaceURI) {
 
78
+        throw new RuntimeException("not implemented");
 
79
+    }
 
80
+
 
81
+    public String lookupPrefix(String namespaceURI) {
 
82
+        throw new RuntimeException("not implemented");
 
83
+    }
 
84
+
 
85
+    public boolean isEqualNode(Node arg) {
 
86
+        throw new RuntimeException("not implemented");
 
87
+    }
 
88
+
 
89
+    public void setXmlVersion(String xmlVersion) {
 
90
+        throw new RuntimeException("not implemented");
 
91
+    }
 
92
+
 
93
+    public String getXmlVersion() {
 
94
+        throw new RuntimeException("not implemented");
 
95
+    }
 
96
+
 
97
+    public Object getUserData(String key) {
 
98
+        throw new RuntimeException("not implemented");
 
99
+    }
 
100
+
 
101
+    public String getTextContent() {
 
102
+        throw new RuntimeException("not implemented");
 
103
+    }
 
104
+
 
105
+    public void normalizeDocument() {
 
106
+        throw new RuntimeException("not implemented");
 
107
+    }
 
108
+
 
109
+    public String lookupNamespaceURI(String prefix) {
 
110
+        throw new RuntimeException("not implemented");
 
111
+    }
 
112
+
 
113
+    public DOMConfiguration getDomConfig() {
 
114
+        throw new RuntimeException("not implemented");
 
115
+    }
 
116
+
 
117
+    public short compareDocumentPosition(Node other) {
 
118
+        throw new RuntimeException("not implemented");
 
119
+    }
 
120
 }
 
121
 
 
122
--- axis-1_2/src/org/apache/axis/message/NodeImpl.java~ 2005-05-03 20:28:58.000000000 +0100
 
123
+++ axis-1_2/src/org/apache/axis/message/NodeImpl.java  2005-06-07 12:22:15.000000000 +0100
 
124
@@ -30,6 +30,8 @@
 
125
 import org.w3c.dom.Node;
 
126
 import org.w3c.dom.NodeList;
 
127
 import org.w3c.dom.Text;
 
128
+import org.w3c.dom.TypeInfo;
 
129
+import org.w3c.dom.UserDataHandler;
 
130
 import org.xml.sax.Attributes;
 
131
 import org.xml.sax.helpers.AttributesImpl;
 
132
 
 
133
@@ -834,4 +836,74 @@
 
134
             ((NodeImpl) parent).setDirty(true);
 
135
         }
 
136
     }
 
137
+
 
138
+    /**
 
139
+     *  DOM Level 3 stubs
 
140
+     */
 
141
+
 
142
+    public void setIdAttributeNS(
 
143
+        String namespaceURI, String localName, boolean isId) {
 
144
+        throw new RuntimeException("not implemented");
 
145
+    }
 
146
+
 
147
+    public void setIdAttribute(String name, boolean isId) {
 
148
+        throw new RuntimeException("not implemented");
 
149
+    }
 
150
+
 
151
+    public void setIdAttributeNode(Attr idAttr, boolean isId) {
 
152
+        throw new RuntimeException("not implemented");
 
153
+    }
 
154
+
 
155
+    public TypeInfo getSchemaTypeInfo() {
 
156
+        throw new RuntimeException("not implemented");
 
157
+    }
 
158
+
 
159
+    public Object setUserData(
 
160
+        String key, Object data, UserDataHandler handler) {
 
161
+        throw new RuntimeException("not implemented");
 
162
+    }
 
163
+
 
164
+    public String getBaseURI() {
 
165
+        throw new RuntimeException("not implemented");
 
166
+    }
 
167
+
 
168
+    public String getTextContent() {
 
169
+        throw new RuntimeException("not implemented");
 
170
+    }
 
171
+
 
172
+    public boolean isSameNode(Node other) {
 
173
+        throw new RuntimeException("not implemented");
 
174
+    }
 
175
+
 
176
+    public void setTextContent(String textContent) {
 
177
+        throw new RuntimeException("not implemented");
 
178
+    }
 
179
+
 
180
+    public Object getUserData(String key) {
 
181
+        throw new RuntimeException("not implemented");
 
182
+    }
 
183
+
 
184
+    public boolean isDefaultNamespace(String namespaceURI) {
 
185
+        throw new RuntimeException("not implemented");
 
186
+    }
 
187
+
 
188
+    public Object getFeature(String feature, String version) {
 
189
+        throw new RuntimeException("not implemented");
 
190
+    }
 
191
+
 
192
+    public boolean isEqualNode(Node arg) {
 
193
+        throw new RuntimeException("not implemented");
 
194
+    }
 
195
+
 
196
+    public short compareDocumentPosition(Node other) {
 
197
+        throw new RuntimeException("not implemented");
 
198
+    }
 
199
+
 
200
+    public String lookupNamespaceURI(String prefix) {
 
201
+        throw new RuntimeException("not implemented");
 
202
+    }
 
203
+
 
204
+    public String lookupPrefix(String namespaceURI) {
 
205
+        throw new RuntimeException("not implemented");
 
206
+    }
 
207
 }
 
208
--- axis-1_2/src/org/apache/axis/message/SOAPDocumentImpl.java~ 2005-05-03 20:29:08.000000000 +0100
 
209
+++ axis-1_2/src/org/apache/axis/message/SOAPDocumentImpl.java  2005-06-07 12:31:30.000000000 +0100
 
210
@@ -25,6 +25,7 @@
 
211
 import org.w3c.dom.Attr;
 
212
 import org.w3c.dom.CDATASection;
 
213
 import org.w3c.dom.Comment;
 
214
+import org.w3c.dom.DOMConfiguration;
 
215
 import org.w3c.dom.DOMException;
 
216
 import org.w3c.dom.DOMImplementation;
 
217
 import org.w3c.dom.Document;
 
218
@@ -36,6 +37,7 @@
 
219
 import org.w3c.dom.Node;
 
220
 import org.w3c.dom.NodeList;
 
221
 import org.w3c.dom.ProcessingInstruction;
 
222
+import org.w3c.dom.UserDataHandler;
 
223
 
 
224
 import javax.xml.parsers.ParserConfigurationException;
 
225
 import javax.xml.soap.SOAPException;
 
226
@@ -680,4 +682,113 @@
 
227
     public boolean hasAttributes() {
 
228
         throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "");
 
229
     }
 
230
+
 
231
+    /**
 
232
+     *  DOM Level 3 stubs
 
233
+     */
 
234
+
 
235
+    public String getBaseURI() {
 
236
+        throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "");
 
237
+    }
 
238
+
 
239
+    public boolean getXmlStandalone() {
 
240
+        throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "");
 
241
+    }
 
242
+
 
243
+    public boolean getStrictErrorChecking() {
 
244
+        throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "");
 
245
+    }
 
246
+
 
247
+    public void setXmlStandalone(boolean xmlStandalone) {
 
248
+        throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "");
 
249
+    }
 
250
+
 
251
+    public Node renameNode(Node n, String namespaceURI, String qualifiedName) {
 
252
+        throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "");
 
253
+    }
 
254
+
 
255
+    public void setStrictErrorChecking(boolean strictErrorChecking) {
 
256
+        throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "");
 
257
+    }
 
258
+
 
259
+    public Object setUserData(
 
260
+        String key, Object data, UserDataHandler handler) {
 
261
+        throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "");
 
262
+    }
 
263
+    
 
264
+    public String getInputEncoding() {
 
265
+        throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "");
 
266
+    }
 
267
+    
 
268
+    public String getXmlEncoding() {
 
269
+        throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "");
 
270
+    }
 
271
+
 
272
+    public void setTextContent(String textContent) {
 
273
+        throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "");
 
274
+    }
 
275
+
 
276
+    public boolean isSameNode(Node other) {
 
277
+        throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "");
 
278
+    }
 
279
+
 
280
+    public String getDocumentURI() {
 
281
+        throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "");
 
282
+    }
 
283
+
 
284
+    public void setDocumentURI(String documentURI) {
 
285
+        throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "");
 
286
+    }
 
287
+
 
288
+    public Object getFeature(String feature, String version) {
 
289
+        throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "");
 
290
+    }
 
291
+
 
292
+    public Node adoptNode(Node source) {
 
293
+        throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "");
 
294
+    }
 
295
+
 
296
+    public boolean isDefaultNamespace(String namespaceURI) {
 
297
+        throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "");
 
298
+    }
 
299
+
 
300
+    public boolean isEqualNode(Node arg) {
 
301
+        throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "");
 
302
+    }
 
303
+
 
304
+    public void setXmlVersion(String xmlVersion) {
 
305
+        throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "");
 
306
+    }
 
307
+
 
308
+    public String getXmlVersion() {
 
309
+        throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "");
 
310
+    }
 
311
+
 
312
+    public String lookupPrefix(String namespaceURI) {
 
313
+        throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "");
 
314
+    }
 
315
+
 
316
+    public Object getUserData(String key) {
 
317
+        throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "");
 
318
+    }
 
319
+
 
320
+    public String getTextContent() {
 
321
+        throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "");
 
322
+    }
 
323
+
 
324
+    public void normalizeDocument() {
 
325
+        throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "");
 
326
+    }
 
327
+
 
328
+    public String lookupNamespaceURI(String prefix) {
 
329
+        throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "");
 
330
+    }
 
331
+
 
332
+    public DOMConfiguration getDomConfig() {
 
333
+        throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "");
 
334
+    }
 
335
+
 
336
+    public short compareDocumentPosition(Node other) {
 
337
+        throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "");
 
338
+    }
 
339
 }
 
340
--- axis-1_2/src/org/apache/axis/message/Text.java~     2005-05-03 20:29:21.000000000 +0100
 
341
+++ axis-1_2/src/org/apache/axis/message/Text.java      2005-06-07 12:34:19.000000000 +0100
 
342
@@ -213,4 +213,19 @@
 
343
         return ( textRep.getData() != null ? textRep.getData().hashCode() : 0 );
 
344
     }
 
345
 
 
346
+    /**
 
347
+     *  DOM Level 3 stubs
 
348
+     */
 
349
+
 
350
+    public String getWholeText() {
 
351
+        throw new RuntimeException("not implemented");
 
352
+    }
 
353
+
 
354
+    public boolean isElementContentWhitespace() {
 
355
+        throw new RuntimeException("not implemented");
 
356
+    }
 
357
+
 
358
+    public org.w3c.dom.Text replaceWholeText(String content) {
 
359
+        throw new RuntimeException("not implemented");
 
360
+    }
 
361
 }