Ignore:
Timestamp:
11/24/06 14:20:40 (6 years ago)
Author:
sys
Message:

cleanup incrementalSax

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Res_Xalan/org/apache/xml/dtm/ref/DTMNodeProxy.java

    r7031 r7489  
    2525import org.w3c.dom.CDATASection; 
    2626import org.w3c.dom.Comment; 
     27import org.w3c.dom.DOMConfiguration; 
    2728import org.w3c.dom.DOMException; 
    2829import org.w3c.dom.DOMImplementation; 
     
    3738import org.w3c.dom.ProcessingInstruction; 
    3839import org.w3c.dom.Text; 
     40import org.w3c.dom.TypeInfo; 
     41import org.w3c.dom.UserDataHandler; 
    3942 
    4043/** 
     
    13271330  static class DTMNodeProxyImplementation implements DOMImplementation 
    13281331  { 
    1329     public DocumentType createDocumentType(String qualifiedName,String publicId, String systemId) 
     1332        public DocumentType createDocumentType(String qualifiedName,String publicId, String systemId) 
    13301333    { 
    13311334      throw new DTMDOMException(DOMException.NOT_SUPPORTED_ERR); 
     
    13541357      return false; 
    13551358    } 
    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   
     1368public String getDocumentURI() { 
     1369        return null; 
     1370} 
     1371 
     1372public DOMConfiguration getDomConfig() { 
     1373        return null; 
     1374} 
     1375 
     1376public String getInputEncoding() { 
     1377        return null; 
     1378} 
     1379 
     1380public String getXmlEncoding() { 
     1381        return null; 
     1382} 
     1383 
     1384public boolean getXmlStandalone() { 
     1385        return false; 
     1386} 
     1387 
     1388public String getXmlVersion() { 
     1389        return null; 
     1390} 
     1391 
     1392public void normalizeDocument() { 
     1393} 
     1394 
     1395public Node renameNode(Node pArg0, String pArg1, String pArg2) throws DOMException { 
     1396        return null; 
     1397} 
     1398 
     1399public void setDocumentURI(String pArg0) { 
     1400} 
     1401 
     1402public void setXmlStandalone(boolean pArg0) throws DOMException { 
     1403} 
     1404 
     1405public void setXmlVersion(String pArg0) throws DOMException { 
     1406} 
     1407 
     1408public boolean isId() { 
     1409        return false; 
     1410} 
     1411 
     1412public TypeInfo getSchemaTypeInfo() { 
     1413        return null; 
     1414} 
     1415 
     1416public void setIdAttribute(String pArg0, boolean pArg1) throws DOMException { 
     1417} 
     1418 
     1419public void setIdAttributeNode(Attr pArg0, boolean pArg1) throws DOMException { 
     1420} 
     1421 
     1422public void setIdAttributeNS(String pArg0, String pArg1, boolean pArg2) throws DOMException { 
     1423} 
     1424 
     1425public String getWholeText() { 
     1426        return null; 
     1427} 
     1428 
     1429public boolean isElementContentWhitespace() { 
     1430        return false; 
     1431} 
     1432 
     1433public Text replaceWholeText(String pArg0) throws DOMException { 
     1434        return null; 
     1435} 
     1436 
     1437public short compareDocumentPosition(Node pOther) throws DOMException { 
     1438        return 0; 
     1439} 
     1440 
     1441public String getBaseURI() { 
     1442        return null; 
     1443} 
     1444 
     1445public Object getFeature(String pFeature, String pVersion) { 
     1446        return null; 
     1447} 
     1448 
     1449public String getTextContent() throws DOMException { 
     1450        return null; 
     1451} 
     1452 
     1453public Object getUserData(String pKey) { 
     1454        return null; 
     1455} 
     1456 
     1457public boolean isDefaultNamespace(String pNamespaceURI) { 
     1458        return false; 
     1459} 
     1460 
     1461public boolean isEqualNode(Node pArg) { 
     1462        return false; 
     1463} 
     1464 
     1465public boolean isSameNode(Node pOther) { 
     1466        return false; 
     1467} 
     1468 
     1469public String lookupNamespaceURI(String prefix) { 
     1470        return null; 
     1471} 
     1472 
     1473public String lookupPrefix(String pNamespaceURI) { 
     1474        return null; 
     1475} 
     1476 
     1477public void setTextContent(String pTextContent) throws DOMException { 
     1478} 
     1479 
     1480public 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.