KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * @(#)DOMDocumentTypeImpl.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  * DOMDocumentTypeImpl
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 DOMDocumentTypeImpl extends DOMNodeImpl
29                             implements org.w3c.dom.DocumentType JavaDoc {
30
31     protected DOMDocumentTypeImpl(Node adaptee)
32     {
33         super(adaptee);
34     }
35
36
37     /* --------------------- DOM ---------------------------- */
38
39     /**
40      * @see org.w3c.dom.Node#getNodeType
41      */

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

50     public String JavaDoc getNodeName()
51     {
52         return getName();
53     }
54
55     /**
56      * @see org.w3c.dom.DocumentType#getName
57      */

58     public String JavaDoc getName()
59     {
60         String JavaDoc value = null;
61         if (adaptee.type == Node.DocTypeTag)
62         {
63
64             if (adaptee.textarray != null && adaptee.start < adaptee.end)
65             {
66                 value = Lexer.getString(adaptee.textarray,
67                                         adaptee.start,
68                                         adaptee.end - adaptee.start);
69             }
70         }
71         return value;
72     }
73
74     public org.w3c.dom.NamedNodeMap JavaDoc getEntities()
75     {
76         // NOT SUPPORTED
77
return null;
78     }
79
80     public org.w3c.dom.NamedNodeMap JavaDoc getNotations()
81     {
82         // NOT SUPPORTED
83
return null;
84     }
85
86     /**
87      * DOM2 - not implemented.
88      */

89     public String JavaDoc getPublicId() {
90     return null;
91     }
92
93     /**
94      * DOM2 - not implemented.
95      */

96     public String JavaDoc getSystemId() {
97     return null;
98     }
99
100     /**
101      * DOM2 - not implemented.
102      */

103     public String JavaDoc getInternalSubset() {
104     return null;
105     }
106
107     public org.w3c.dom.Node JavaDoc adoptNode (org.w3c.dom.Node JavaDoc oNode) {
108       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentTypeImpl adoptNode() Not implemented");
109     }
110
111     public short compareDocumentPosition (org.w3c.dom.Node JavaDoc oNode) {
112       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentTypeImpl compareDocumentPosition() Not implemented");
113     }
114
115     public boolean isDefaultNamespace(String JavaDoc sStr1) {
116       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentTypeImpl isDefaultNamespace() Not implemented");
117     }
118
119     public boolean isEqualNode(org.w3c.dom.Node JavaDoc oNode) {
120       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentTypeImpl isEqualNode() Not implemented");
121     }
122
123     public boolean isSameNode(org.w3c.dom.Node JavaDoc oNode) {
124       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentTypeImpl isSameNode() Not implemented");
125     }
126
127     public String JavaDoc lookupPrefix(String JavaDoc sStr1) {
128       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentTypeImpl lookupPreffix() Not implemented");
129     }
130
131     public String JavaDoc lookupNamespaceURI(String JavaDoc sStr1) {
132       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentTypeImpl lookupNamespaceURI() Not implemented");
133     }
134
135     public String JavaDoc getDocumentURI() {
136       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentTypeImpl getDocumentURI() Not implemented");
137     }
138
139     public void setDocumentURI(String JavaDoc sStr1) {
140       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentTypeImpl setDocumentURI() Not implemented");
141     }
142
143     public boolean getStrictErrorChecking() {
144       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentTypeImpl getStrictErrorChecking() Not implemented");
145     }
146
147     public void setStrictErrorChecking(boolean bStrictCheck) {
148       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentTypeImpl setStrictErrorChecking() Not implemented");
149     }
150
151     public boolean getXmlStandalone() {
152       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentTypeImpl getXmlStandalone() Not implemented");
153     }
154
155     public void setXmlStandalone(boolean bXmlStandalone) {
156       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentTypeImpl setXmlStandalone() Not implemented");
157     }
158
159     public Object JavaDoc getFeature(String JavaDoc sStr1, String JavaDoc sStr2) {
160       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentTypeImpl getFeature() Not implemented");
161     }
162
163     public String JavaDoc getInputEncoding() {
164       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentTypeImpl getInputEncoding() Not implemented");
165     }
166
167     public String JavaDoc getXmlEncoding() {
168       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentTypeImpl getXmlEncoding() Not implemented");
169     }
170
171     public String JavaDoc getXmlVersion() {
172       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentTypeImpl getXmlVersion() Not implemented");
173     }
174
175     public void setXmlVersion(String JavaDoc sStr1) {
176       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentTypeImpl setXmlVersion() Not implemented");
177     }
178
179     public Object JavaDoc getUserData(String JavaDoc sStr1) {
180       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentTypeImpl getUserData() Not implemented");
181     }
182
183     public Object JavaDoc setUserData(String JavaDoc sStr1, Object JavaDoc oObj2, org.w3c.dom.UserDataHandler JavaDoc oHndlr) {
184       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentTypeImpl setUserData() Not implemented");
185     }
186
187     public org.w3c.dom.DOMConfiguration JavaDoc getDomConfig () {
188       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentTypeImpl getDomConfig() Not implemented");
189     }
190
191     public void normalizeDocument () {
192       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentTypeImpl normalizeDocument() Not implemented");
193     }
194
195     public org.w3c.dom.Node JavaDoc renameNode (org.w3c.dom.Node JavaDoc oNode, String JavaDoc sStr1, String JavaDoc sStr2) {
196       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentTypeImpl renameNode() Not implemented");
197     }
198
199     public String JavaDoc getBaseURI() {
200       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentTypeImpl getBaseURI() Not implemented");
201     }
202
203     public String JavaDoc getTextContent() {
204       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentTypeImpl getTextContent() Not implemented");
205     }
206
207     public void setTextContent(String JavaDoc sStr1) {
208       throw new UnsupportedOperationException JavaDoc("org.w3c.tidy.DOMDocumentTypeImpl setTextContent() Not implemented");
209     }
210 }
211
Popular Tags