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