1 16 17 package org.jboss.axis.message; 18 19 import org.w3c.dom.CDATASection ; 20 import org.w3c.dom.Node ; 21 import org.w3c.dom.DOMException ; 22 import org.w3c.dom.UserDataHandler ; 23 24 29 public class CDATAImpl extends TextImpl implements CDATASection 30 { 31 32 public CDATAImpl(Node node) 33 { 34 super(node); 35 } 36 37 public boolean isComment() 38 { 39 return false; 40 } 41 42 44 public String getBaseURI() 45 { 46 return null; 47 } 48 49 public short compareDocumentPosition(Node other) throws DOMException 50 { 51 return 0; 52 } 53 54 public String getTextContent() throws DOMException 55 { 56 return null; 57 } 58 59 public void setTextContent(String textContent) throws DOMException 60 { 61 62 } 63 64 public boolean isSameNode(Node other) 65 { 66 return false; 67 } 68 69 public String lookupPrefix(String namespaceURI) 70 { 71 return null; 72 } 73 74 public boolean isDefaultNamespace(String namespaceURI) 75 { 76 return false; 77 } 78 79 public String lookupNamespaceURI(String prefix) 80 { 81 return null; 82 } 83 84 public boolean isEqualNode(Node arg) 85 { 86 return false; 87 } 88 89 public Object getFeature(String feature, String version) 90 { 91 return null; 92 } 93 94 public Object setUserData(String key, Object data, UserDataHandler handler) 95 { 96 return null; 97 } 98 99 public Object getUserData(String key) 100 { 101 return null; 102 } 103 104 } | Popular Tags |