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