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