KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > w3c > tidy > DOMCommentImpl


1 /*
2  * @(#)DOMCommentImpl.java 1.11 2000/08/16
3  *
4  */

5
6 package org.w3c.tidy;
7
8 import org.w3c.dom.DOMException JavaDoc;
9
10 /**
11  *
12  * DOMCommentImpl
13  *
14  * (c) 1998-2000 (W3C) MIT, INRIA, Keio University
15  * See Tidy.java for the copyright notice.
16  * Derived from <a HREF="http://www.w3.org/People/Raggett/tidy">
17  * HTML Tidy Release 4 Aug 2000</a>
18  *
19  * @author Dave Raggett <dsr@w3.org>
20  * @author Andy Quick <ac.quick@sympatico.ca> (translation to Java)
21  * @version 1.7, 1999/12/06 Tidy Release 30 Nov 1999
22  * @version 1.8, 2000/01/22 Tidy Release 13 Jan 2000
23  * @version 1.9, 2000/06/03 Tidy Release 30 Apr 2000
24  * @version 1.10, 2000/07/22 Tidy Release 8 Jul 2000
25  * @version 1.11, 2000/08/16 Tidy Release 4 Aug 2000
26  */

27
28 public class DOMCommentImpl extends DOMCharacterDataImpl
29                             implements org.w3c.dom.Comment JavaDoc {
30
31     protected DOMCommentImpl(Node adaptee)
32     {
33         super(adaptee);
34     }
35
36
37     /* --------------------- DOM ---------------------------- */
38
39     /**
40      * @see org.w3c.dom.Node#getNodeName
41      */

42     public String JavaDoc getNodeName()
43     {
44         return "#comment";
45     }
46
47     /**
48      * @see org.w3c.dom.Node#getNodeType
49      */

50     public short getNodeType()
51     {
52         return org.w3c.dom.Node.COMMENT_NODE;
53     }
54
55     public org.w3c.dom.Node JavaDoc adoptNode (org.w3c.dom.Node JavaDoc oNode) {
56       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentImpl adoptNode() Not implemented");
57     }
58
59     public short compareDocumentPosition (org.w3c.dom.Node JavaDoc oNode) {
60       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentImpl compareDocumentPosition() Not implemented");
61     }
62
63     public boolean isDefaultNamespace(String JavaDoc sStr1) {
64       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentImpl isDefaultNamespace() Not implemented");
65     }
66
67     public boolean isEqualNode(org.w3c.dom.Node JavaDoc oNode) {
68       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentImpl isEqualNode() Not implemented");
69     }
70
71     public boolean isSameNode(org.w3c.dom.Node JavaDoc oNode) {
72       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentImpl isSameNode() Not implemented");
73     }
74
75     public String JavaDoc lookupPrefix(String JavaDoc sStr1) {
76       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentImpl lookupPreffix() Not implemented");
77     }
78
79     public String JavaDoc lookupNamespaceURI(String JavaDoc sStr1) {
80       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentImpl lookupNamespaceURI() Not implemented");
81     }
82
83     public String JavaDoc getDocumentURI() {
84       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentImpl getDocumentURI() Not implemented");
85     }
86
87     public void setDocumentURI(String JavaDoc sStr1) {
88       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentImpl setDocumentURI() Not implemented");
89     }
90
91     public boolean getStrictErrorChecking() {
92       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentImpl getStrictErrorChecking() Not implemented");
93     }
94
95     public void setStrictErrorChecking(boolean bStrictCheck) {
96       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentImpl setStrictErrorChecking() Not implemented");
97     }
98
99     public boolean getXmlStandalone() {
100       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentImpl getXmlStandalone() Not implemented");
101     }
102
103     public void setXmlStandalone(boolean bXmlStandalone) {
104       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentImpl setXmlStandalone() Not implemented");
105     }
106
107     public Object JavaDoc getFeature(String JavaDoc sStr1, String JavaDoc sStr2) {
108       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentImpl getFeature() Not implemented");
109     }
110
111     public String JavaDoc getInputEncoding() {
112       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentImpl getInputEncoding() Not implemented");
113     }
114
115     public String JavaDoc getXmlEncoding() {
116       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentImpl getXmlEncoding() Not implemented");
117     }
118
119     public String JavaDoc getXmlVersion() {
120       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentImpl getXmlVersion() Not implemented");
121     }
122
123     public void setXmlVersion(String JavaDoc sStr1) {
124       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentImpl setXmlVersion() Not implemented");
125     }
126
127     public Object JavaDoc getUserData(String JavaDoc sStr1) {
128       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentImpl getUserData() Not implemented");
129     }
130
131     public Object JavaDoc setUserData(String JavaDoc sStr1, Object JavaDoc oObj2, org.w3c.dom.UserDataHandler JavaDoc oHndlr) {
132       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentImpl setUserData() Not implemented");
133     }
134
135     public org.w3c.dom.DOMConfiguration JavaDoc getDomConfig () {
136       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentImpl getDomConfig() Not implemented");
137     }
138
139     public void normalizeDocument () {
140       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentImpl normalizeDocument() Not implemented");
141     }
142
143     public org.w3c.dom.Node JavaDoc renameNode (org.w3c.dom.Node JavaDoc oNode, String JavaDoc sStr1, String JavaDoc sStr2) {
144       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentImpl renameNode() Not implemented");
145     }
146
147     public String JavaDoc getBaseURI() {
148       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentImpl getBaseURI() Not implemented");
149     }
150
151     public String JavaDoc getTextContent() {
152       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentImpl getTextContent() Not implemented");
153     }
154
155     public void setTextContent(String JavaDoc sStr1) {
156       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentImpl setTextContent() Not implemented");
157     }
158 }
159
Popular Tags