summaryrefslogtreecommitdiff
path: root/Build/source/texk/tex4htk/java/xtpipes/XtpipesUni.java
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/tex4htk/java/xtpipes/XtpipesUni.java')
-rw-r--r--Build/source/texk/tex4htk/java/xtpipes/XtpipesUni.java41
1 files changed, 0 insertions, 41 deletions
diff --git a/Build/source/texk/tex4htk/java/xtpipes/XtpipesUni.java b/Build/source/texk/tex4htk/java/xtpipes/XtpipesUni.java
deleted file mode 100644
index c11bbf9255f..00000000000
--- a/Build/source/texk/tex4htk/java/xtpipes/XtpipesUni.java
+++ /dev/null
@@ -1,41 +0,0 @@
-// 2009-01-27-22:19
-package xtpipes;
-public class XtpipesUni{
- private static int D800 = Integer.parseInt("D800", 16);
-private static int DFFF = Integer.parseInt("DFFF", 16);
-private static int DC00 = Integer.parseInt("DC00", 16);
-private static int X400 = Integer.parseInt("400",16);
-private static int X10000 = Integer.parseInt("10000",16);
-
-
-public static String toUni( char[] ch, int start, int length,
- String filter ){
- StringBuffer buf = new StringBuffer(length);
- for (int i = 0; i < length; i++) {
- int chr = ch[ start + i ];
- boolean ascii = (chr == '\n')
- || (chr > 31) && (chr < 127) ;
- if( filter.indexOf(chr) > -1 ){ ascii = false; }
-
- if( (chr >= D800) && (chr<= DFFF) ){
- chr = ((ch[i] - D800) * X400 + (ch[++i] - DC00)) + X10000;
- }
-
-
- buf.append(
- ascii ? Character.toString((char) chr)
- : ("&#x"
- + Integer.toHexString(chr).toUpperCase()
- + ";" ) );
- }
- return new String(buf);
-}
-
- public static String toUni( String s, String filter ){
- char [] ch = s.toCharArray();
- int length = ch.length;
- return toUni(ch, 0, length, filter);
-}
-
-}
-