Changeset 7489 for trunk/Res_Xalan/org/apache/xml/utils/UnImplNode.java
- Timestamp:
- 11/24/06 14:20:40 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Res_Xalan/org/apache/xml/utils/UnImplNode.java
r7031 r7489 21 21 import org.apache.xml.res.XMLErrorResources; 22 22 import org.apache.xml.res.XMLMessages; 23 24 23 import org.w3c.dom.Attr; 25 24 import org.w3c.dom.CDATASection; 26 25 import org.w3c.dom.Comment; 26 import org.w3c.dom.DOMConfiguration; 27 27 import org.w3c.dom.DOMException; 28 28 import org.w3c.dom.DOMImplementation; … … 37 37 import org.w3c.dom.ProcessingInstruction; 38 38 import org.w3c.dom.Text; 39 import org.w3c.dom.TypeInfo; 40 import org.w3c.dom.UserDataHandler; 39 41 40 42 /** … … 1279 1281 error(XMLErrorResources.ER_FUNCTION_NOT_SUPPORTED); 1280 1282 } 1281 } 1283 1284 1285 //***************** Compatibilite jre 1.5 ******* 1286 1287 public TypeInfo getSchemaTypeInfo() { 1288 return null; 1289 } 1290 1291 public void setIdAttribute(String pName, boolean pIsId) throws DOMException { 1292 } 1293 1294 public void setIdAttributeNode(Attr pIdAttr, boolean pIsId) throws DOMException { 1295 } 1296 1297 public void setIdAttributeNS(String pNamespaceURI, String pLocalName, boolean pIsId) throws DOMException { 1298 } 1299 1300 public String getDocumentURI() { 1301 return null; 1302 } 1303 1304 public DOMConfiguration getDomConfig() { 1305 return null; 1306 } 1307 1308 public String getInputEncoding() { 1309 return null; 1310 } 1311 1312 public String getXmlEncoding() { 1313 return null; 1314 } 1315 1316 public boolean getXmlStandalone() { 1317 return false; 1318 } 1319 1320 public String getXmlVersion() { 1321 return null; 1322 } 1323 1324 public void normalizeDocument() { 1325 } 1326 1327 public Node renameNode(Node pN, String pNamespaceURI, String pQualifiedName) throws DOMException { 1328 return null; 1329 } 1330 1331 public void setDocumentURI(String pDocumentURI) { 1332 } 1333 1334 public void setXmlStandalone(boolean pXmlStandalone) throws DOMException { 1335 } 1336 1337 public void setXmlVersion(String pXmlVersion) throws DOMException { 1338 } 1339 1340 public short compareDocumentPosition(Node pOther) throws DOMException { 1341 return 0; 1342 } 1343 1344 public String getBaseURI() { 1345 return null; 1346 } 1347 1348 public Object getFeature(String pFeature, String pVersion) { 1349 return null; 1350 } 1351 1352 public String getTextContent() throws DOMException { 1353 return null; 1354 } 1355 1356 public Object getUserData(String pKey) { 1357 return null; 1358 } 1359 1360 public boolean isDefaultNamespace(String pNamespaceURI) { 1361 return false; 1362 } 1363 1364 public boolean isEqualNode(Node pArg) { 1365 return false; 1366 } 1367 1368 public boolean isSameNode(Node pOther) { 1369 return false; 1370 } 1371 1372 public String lookupNamespaceURI(String prefix) { 1373 return null; 1374 } 1375 1376 public String lookupPrefix(String pNamespaceURI) { 1377 return null; 1378 } 1379 1380 public void setTextContent(String pTextContent) throws DOMException { 1381 } 1382 1383 public Object setUserData(String pKey, Object pData, UserDataHandler pHandler) { 1384 return null; 1385 } 1386 1387 1388 }
Note: See TracChangeset
for help on using the changeset viewer.