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/dom2dtm/DOM2DTMdefaultNamespaceDeclarationNode.java

    r7031 r7489  
    2323 
    2424import org.w3c.dom.Attr; 
     25import org.w3c.dom.DOMException; 
    2526import org.w3c.dom.Document; 
    2627import org.w3c.dom.Element; 
     
    2829import org.w3c.dom.Node; 
    2930import org.w3c.dom.NodeList; 
     31import org.w3c.dom.TypeInfo; 
     32import org.w3c.dom.UserDataHandler; 
    3033 
    3134/** This is a kluge to let us shove a declaration for xml: into the 
     
    102105                return handle; 
    103106        } 
     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         
    104157} 
    105158 
Note: See TracChangeset for help on using the changeset viewer.