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/serializer/ToHTMLStream.java

    r7031 r7489  
    673673        throws org.xml.sax.SAXException 
    674674    { 
    675  
     675         
     676        if(name.equals("xxx")) { 
     677                System.out.println("xxx"); 
     678                //System.prin 
     679        } 
    676680        ElemContext elemContext = m_elemContext; 
    677681 
     
    985989        } 
    986990        return s; 
    987     } 
    988  
    989     /** 
    990     * Dmitri Ilyin: Makes sure if the String is HH encoded sign. 
    991     * @param str must be 2 characters long 
    992     * 
    993     * @return true or false 
    994     */ 
    995     private boolean isHHSign(String str) 
    996     { 
    997         boolean sign = true; 
    998         try 
    999         { 
    1000             char r = (char) Integer.parseInt(str, 16); 
    1001         } 
    1002         catch (NumberFormatException e) 
    1003         { 
    1004             sign = false; 
    1005         } 
    1006         return sign; 
    1007991    } 
    1008992 
Note: See TracChangeset for help on using the changeset viewer.