- Timestamp:
- 11/24/06 14:20:40 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Res_Xalan/org/apache/xml/serializer/ToHTMLStream.java
r7031 r7489 673 673 throws org.xml.sax.SAXException 674 674 { 675 675 676 if(name.equals("xxx")) { 677 System.out.println("xxx"); 678 //System.prin 679 } 676 680 ElemContext elemContext = m_elemContext; 677 681 … … 985 989 } 986 990 return s; 987 }988 989 /**990 * Dmitri Ilyin: Makes sure if the String is HH encoded sign.991 * @param str must be 2 characters long992 *993 * @return true or false994 */995 private boolean isHHSign(String str)996 {997 boolean sign = true;998 try999 {1000 char r = (char) Integer.parseInt(str, 16);1001 }1002 catch (NumberFormatException e)1003 {1004 sign = false;1005 }1006 return sign;1007 991 } 1008 992
Note: See TracChangeset
for help on using the changeset viewer.