Changeset 7489 for trunk/Res_Xalan/org/apache/xml/dtm/ref/DTMNodeProxy.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/DTMNodeProxy.java
r7031 r7489 25 25 import org.w3c.dom.CDATASection; 26 26 import org.w3c.dom.Comment; 27 import org.w3c.dom.DOMConfiguration; 27 28 import org.w3c.dom.DOMException; 28 29 import org.w3c.dom.DOMImplementation; … … 37 38 import org.w3c.dom.ProcessingInstruction; 38 39 import org.w3c.dom.Text; 40 import org.w3c.dom.TypeInfo; 41 import org.w3c.dom.UserDataHandler; 39 42 40 43 /** … … 1327 1330 static class DTMNodeProxyImplementation implements DOMImplementation 1328 1331 { 1329 public DocumentType createDocumentType(String qualifiedName,String publicId, String systemId)1332 public DocumentType createDocumentType(String qualifiedName,String publicId, String systemId) 1330 1333 { 1331 1334 throw new DTMDOMException(DOMException.NOT_SUPPORTED_ERR); … … 1354 1357 return false; 1355 1358 } 1356 } 1357 } 1359 /** Compatibilité jre 1.5*/ 1360 public Object getFeature(String pArg0, String pArg1) { 1361 return null; 1362 } 1363 } 1364 1365 //*********** Compatibilité jre 1.5 ************* 1366 1367 1368 public String getDocumentURI() { 1369 return null; 1370 } 1371 1372 public DOMConfiguration getDomConfig() { 1373 return null; 1374 } 1375 1376 public String getInputEncoding() { 1377 return null; 1378 } 1379 1380 public String getXmlEncoding() { 1381 return null; 1382 } 1383 1384 public boolean getXmlStandalone() { 1385 return false; 1386 } 1387 1388 public String getXmlVersion() { 1389 return null; 1390 } 1391 1392 public void normalizeDocument() { 1393 } 1394 1395 public Node renameNode(Node pArg0, String pArg1, String pArg2) throws DOMException { 1396 return null; 1397 } 1398 1399 public void setDocumentURI(String pArg0) { 1400 } 1401 1402 public void setXmlStandalone(boolean pArg0) throws DOMException { 1403 } 1404 1405 public void setXmlVersion(String pArg0) throws DOMException { 1406 } 1407 1408 public boolean isId() { 1409 return false; 1410 } 1411 1412 public TypeInfo getSchemaTypeInfo() { 1413 return null; 1414 } 1415 1416 public void setIdAttribute(String pArg0, boolean pArg1) throws DOMException { 1417 } 1418 1419 public void setIdAttributeNode(Attr pArg0, boolean pArg1) throws DOMException { 1420 } 1421 1422 public void setIdAttributeNS(String pArg0, String pArg1, boolean pArg2) throws DOMException { 1423 } 1424 1425 public String getWholeText() { 1426 return null; 1427 } 1428 1429 public boolean isElementContentWhitespace() { 1430 return false; 1431 } 1432 1433 public Text replaceWholeText(String pArg0) throws DOMException { 1434 return null; 1435 } 1436 1437 public short compareDocumentPosition(Node pOther) throws DOMException { 1438 return 0; 1439 } 1440 1441 public String getBaseURI() { 1442 return null; 1443 } 1444 1445 public Object getFeature(String pFeature, String pVersion) { 1446 return null; 1447 } 1448 1449 public String getTextContent() throws DOMException { 1450 return null; 1451 } 1452 1453 public Object getUserData(String pKey) { 1454 return null; 1455 } 1456 1457 public boolean isDefaultNamespace(String pNamespaceURI) { 1458 return false; 1459 } 1460 1461 public boolean isEqualNode(Node pArg) { 1462 return false; 1463 } 1464 1465 public boolean isSameNode(Node pOther) { 1466 return false; 1467 } 1468 1469 public String lookupNamespaceURI(String prefix) { 1470 return null; 1471 } 1472 1473 public String lookupPrefix(String pNamespaceURI) { 1474 return null; 1475 } 1476 1477 public void setTextContent(String pTextContent) throws DOMException { 1478 } 1479 1480 public Object setUserData(String pKey, Object pData, UserDataHandler pHandler) { 1481 return null; 1482 } 1483 1484 1485 1486 }
Note: See TracChangeset
for help on using the changeset viewer.