Changeset 7489 for trunk/Res_Xalan/org/apache/xml/dtm/ref/dom2dtm/DOM2DTMdefaultNamespaceDeclarationNode.java
- Timestamp:
- 11/24/06 14:20:40 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Res_Xalan/org/apache/xml/dtm/ref/dom2dtm/DOM2DTMdefaultNamespaceDeclarationNode.java
r7031 r7489 23 23 24 24 import org.w3c.dom.Attr; 25 import org.w3c.dom.DOMException; 25 26 import org.w3c.dom.Document; 26 27 import org.w3c.dom.Element; … … 28 29 import org.w3c.dom.Node; 29 30 import org.w3c.dom.NodeList; 31 import org.w3c.dom.TypeInfo; 32 import org.w3c.dom.UserDataHandler; 30 33 31 34 /** This is a kluge to let us shove a declaration for xml: into the … … 102 105 return handle; 103 106 } 107 108 109 //***** compatibilité jre 1.5 ****** 110 111 public short compareDocumentPosition(Node pArg0) throws DOMException { 112 return 0; 113 } 114 public String getBaseURI() { 115 return null; 116 } 117 public Object getFeature(String pArg0, String pArg1) { 118 return null; 119 } 120 public String getTextContent() throws DOMException { 121 return null; 122 } 123 public Object getUserData(String pArg0) { 124 return null; 125 } 126 public boolean isDefaultNamespace(String pArg0) { 127 return false; 128 } 129 public boolean isEqualNode(Node pArg0) { 130 return false; 131 } 132 public boolean isSameNode(Node pArg0) { 133 return false; 134 } 135 public String lookupNamespaceURI(String pArg0) { 136 return null; 137 } 138 public String lookupPrefix(String pArg0) { 139 return null; 140 } 141 public void setTextContent(String pArg0) throws DOMException { 142 } 143 public Object setUserData(String pArg0, Object pArg1, UserDataHandler pArg2) { 144 return null; 145 } 146 public TypeInfo getSchemaTypeInfo() { 147 return null; 148 } 149 public boolean isId() { 150 return false; 151 } 152 153 154 155 156 104 157 } 105 158
Note: See TracChangeset
for help on using the changeset viewer.