KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > axis > message > CDATAImpl


1 /*
2  * Copyright 2001-2004 The Apache Software Foundation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16
17 package org.jboss.axis.message;
18
19 import org.w3c.dom.CDATASection JavaDoc;
20 import org.w3c.dom.Node JavaDoc;
21 import org.w3c.dom.DOMException JavaDoc;
22 import org.w3c.dom.UserDataHandler JavaDoc;
23
24 /**
25  * A CDATASection
26  *
27  * @author Heejune Ahn (cityboy@tmax.co.kr)
28  */

29 public class CDATAImpl extends TextImpl implements CDATASection JavaDoc
30 {
31
32    public CDATAImpl(Node JavaDoc node)
33    {
34       super(node);
35    }
36
37    public boolean isComment()
38    {
39       return false;
40    }
41
42    // DOM3-API start ***************************************************************************************************
43

44    public String JavaDoc getBaseURI()
45    {
46       return null;
47    }
48
49    public short compareDocumentPosition(Node JavaDoc other) throws DOMException JavaDoc
50    {
51       return 0;
52    }
53
54    public String JavaDoc getTextContent() throws DOMException JavaDoc
55    {
56       return null;
57    }
58
59    public void setTextContent(String JavaDoc textContent) throws DOMException JavaDoc
60    {
61
62    }
63
64    public boolean isSameNode(Node JavaDoc other)
65    {
66       return false;
67    }
68
69    public String JavaDoc lookupPrefix(String JavaDoc namespaceURI)
70    {
71       return null;
72    }
73
74    public boolean isDefaultNamespace(String JavaDoc namespaceURI)
75    {
76       return false;
77    }
78
79    public String JavaDoc lookupNamespaceURI(String JavaDoc prefix)
80    {
81       return null;
82    }
83
84    public boolean isEqualNode(Node JavaDoc arg)
85    {
86       return false;
87    }
88
89    public Object JavaDoc getFeature(String JavaDoc feature, String JavaDoc version)
90    {
91       return null;
92    }
93
94    public Object JavaDoc setUserData(String JavaDoc key, Object JavaDoc data, UserDataHandler JavaDoc handler)
95    {
96       return null;
97    }
98
99    public Object JavaDoc getUserData(String JavaDoc key)
100    {
101       return null;
102    }
103
104    // DOM3-API end *****************************************************************************************************
105
}
Popular Tags