1 5 6 package org.w3c.tidy; 7 8 import org.w3c.dom.DOMException ; 9 10 27 28 public class DOMTextImpl extends DOMCharacterDataImpl 29 implements org.w3c.dom.Text { 30 31 protected DOMTextImpl(Node adaptee) 32 { 33 super(adaptee); 34 } 35 36 37 38 39 42 public String getNodeName() 43 { 44 return "#text"; 45 } 46 47 50 public short getNodeType() 51 { 52 return org.w3c.dom.Node.TEXT_NODE; 53 } 54 55 58 public org.w3c.dom.Text splitText(int offset) throws DOMException 59 { 60 throw new DOMExceptionImpl(DOMException.NO_MODIFICATION_ALLOWED_ERR, 62 "Not supported"); 63 } 64 65 public boolean isElementContentWhitespace() throws DOMException 66 { 67 throw new DOMExceptionImpl(DOMException.NOT_SUPPORTED_ERR, 69 "Not supported"); 70 } 71 72 public String getWholeText() throws DOMException 73 { 74 throw new DOMExceptionImpl(DOMException.NOT_SUPPORTED_ERR, 76 "Not supported"); 77 } 78 79 public org.w3c.dom.Text replaceWholeText(String sTxt) throws DOMException 80 { 81 throw new DOMExceptionImpl(DOMException.NO_MODIFICATION_ALLOWED_ERR, 83 "Not supported"); 84 } 85 86 public org.w3c.dom.Node adoptNode (org.w3c.dom.Node oNode) { 87 throw new UnsupportedOperationException ("org.w3c.tidy.DOMTextImpl adoptNode() Not implemented"); 88 } 89 90 public short compareDocumentPosition (org.w3c.dom.Node oNode) { 91 throw new UnsupportedOperationException ("org.w3c.tidy.DOMTextImpl compareDocumentPosition() Not implemented"); 92 } 93 94 public boolean isDefaultNamespace(String sStr1) { 95 throw new UnsupportedOperationException ("org.w3c.tidy.DOMTextImpl isDefaultNamespace() Not implemented"); 96 } 97 98 public boolean isEqualNode(org.w3c.dom.Node oNode) { 99 throw new UnsupportedOperationException ("org.w3c.tidy.DOMTextImpl isEqualNode() Not implemented"); 100 } 101 102 public boolean isSameNode(org.w3c.dom.Node oNode) { 103 throw new UnsupportedOperationException ("org.w3c.tidy.DOMTextImpl isSameNode() Not implemented"); 104 } 105 106 public String lookupPrefix(String sStr1) { 107 throw new UnsupportedOperationException ("org.w3c.tidy.DOMTextImpl lookupPreffix() Not implemented"); 108 } 109 110 public String lookupNamespaceURI(String sStr1) { 111 throw new UnsupportedOperationException ("org.w3c.tidy.DOMTextImpl lookupNamespaceURI() Not implemented"); 112 } 113 114 public String getDocumentURI() { 115 throw new UnsupportedOperationException ("org.w3c.tidy.DOMTextImpl getDocumentURI() Not implemented"); 116 } 117 118 public void setDocumentURI(String sStr1) { 119 throw new UnsupportedOperationException ("org.w3c.tidy.DOMTextImpl setDocumentURI() Not implemented"); 120 } 121 122 public boolean getStrictErrorChecking() { 123 throw new UnsupportedOperationException ("org.w3c.tidy.DOMTextImpl getStrictErrorChecking() Not implemented"); 124 } 125 126 public void setStrictErrorChecking(boolean bStrictCheck) { 127 throw new UnsupportedOperationException ("org.w3c.tidy.DOMTextImpl setStrictErrorChecking() Not implemented"); 128 } 129 130 public boolean getXmlStandalone() { 131 throw new UnsupportedOperationException ("org.w3c.tidy.DOMTextImpl getXmlStandalone() Not implemented"); 132 } 133 134 public void setXmlStandalone(boolean bXmlStandalone) { 135 throw new UnsupportedOperationException ("org.w3c.tidy.DOMTextImpl setXmlStandalone() Not implemented"); 136 } 137 138 public Object getFeature(String sStr1, String sStr2) { 139 throw new UnsupportedOperationException ("org.w3c.tidy.DOMTextImpl getFeature() Not implemented"); 140 } 141 142 public String getInputEncoding() { 143 throw new UnsupportedOperationException ("org.w3c.tidy.DOMTextImpl getInputEncoding() Not implemented"); 144 } 145 146 public String getXmlEncoding() { 147 throw new UnsupportedOperationException ("org.w3c.tidy.DOMTextImpl getXmlEncoding() Not implemented"); 148 } 149 150 public String getXmlVersion() { 151 throw new UnsupportedOperationException ("org.w3c.tidy.DOMTextImpl getXmlVersion() Not implemented"); 152 } 153 154 public void setXmlVersion(String sStr1) { 155 throw new UnsupportedOperationException ("org.w3c.tidy.DOMTextImpl setXmlVersion() Not implemented"); 156 } 157 158 public Object getUserData(String sStr1) { 159 throw new UnsupportedOperationException ("org.w3c.tidy.DOMTextImpl getUserData() Not implemented"); 160 } 161 162 public Object setUserData(String sStr1, Object oObj2, org.w3c.dom.UserDataHandler oHndlr) { 163 throw new UnsupportedOperationException ("org.w3c.tidy.DOMTextImpl setUserData() Not implemented"); 164 } 165 166 public org.w3c.dom.DOMConfiguration getDomConfig () { 167 throw new UnsupportedOperationException ("org.w3c.tidy.DOMTextImpl getDomConfig() Not implemented"); 168 } 169 170 public void normalizeDocument () { 171 throw new UnsupportedOperationException ("org.w3c.tidy.DOMTextImpl normalizeDocument() Not implemented"); 172 } 173 174 public org.w3c.dom.Node renameNode (org.w3c.dom.Node oNode, String sStr1, String sStr2) { 175 throw new UnsupportedOperationException ("org.w3c.tidy.DOMTextImpl renameNode() Not implemented"); 176 } 177 178 public String getBaseURI() { 179 throw new UnsupportedOperationException ("org.w3c.tidy.DOMTextImpl getBaseURI() Not implemented"); 180 } 181 182 public String getTextContent() { 183 throw new UnsupportedOperationException ("org.w3c.tidy.DOMTextImpl getTextContent() Not implemented"); 184 } 185 186 public void setTextContent(String sStr1) { 187 throw new UnsupportedOperationException ("org.w3c.tidy.DOMTextImpl setTextContent() Not implemented"); 188 } 189 190 } 191 | Popular Tags |