home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / VPage / Java.bin / CLASSES.ZIP / sun / io / ByteToChar8859_6.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-07-08  |  4.2 KB  |  14 lines

  1. package sun.io;
  2.  
  3. public class ByteToChar8859_6 extends ByteToCharSingleByte {
  4.    private final char[] byteToCharTable = new char[]{'\u0080', '\u0081', '\u0082', '\u0083', '\u0084', '\u0085', '\u0086', '\u0087', '\u0088', '\u0089', '\u008a', '\u008b', '\u008c', '\u008d', '\u008e', '\u008f', '\u0090', '\u0091', '\u0092', '\u0093', '\u0094', '\u0095', '\u0096', '\u0097', '\u0098', '\u0099', '\u009a', '\u009b', '\u009c', '\u009d', '\u009e', '\u009f', '┬á', '∩┐╜', '∩┐╜', '∩┐╜', '┬ñ', '∩┐╜', '∩┐╜', '∩┐╜', '∩┐╜', '∩┐╜', '∩┐╜', '∩┐╜', '╪î', '\u00ad', '∩┐╜', '∩┐╜', '∩┐╜', '∩┐╜', '∩┐╜', '∩┐╜', '∩┐╜', '∩┐╜', '∩┐╜', '∩┐╜', '∩┐╜', '∩┐╜', '∩┐╜', '╪¢', '∩┐╜', '∩┐╜', '∩┐╜', '╪ƒ', '∩┐╜', '╪í', '╪ó', '╪ú', '╪ñ', '╪Ñ', '╪ª', '╪º', '╪¿', '╪⌐', '╪¬', '╪½', '╪¼', '╪¡', '╪«', '╪»', '╪░', '╪▒', '╪▓', '╪│', '╪┤', '╪╡', '╪╢', '╪╖', '╪╕', '╪╣', '╪║', '∩┐╜', '∩┐╜', '∩┐╜', '∩┐╜', '∩┐╜', '┘Ç', '┘ü', '┘é', '┘â', '┘ä', '┘à', '┘å', '┘ç', '┘ê', '┘ë', '┘è', '┘ï', '┘î', '┘ì', '┘Ä', '┘Å', '┘É', '┘æ', '┘Æ', '∩┐╜', '∩┐╜', '∩┐╜', '∩┐╜', '∩┐╜', '∩┐╜', '∩┐╜', '∩┐╜', '∩┐╜', '∩┐╜', '∩┐╜', '∩┐╜', '∩┐╜', '\u0000', '\u0001', '\u0002', '\u0003', '\u0004', '\u0005', '\u0006', '\u0007', '\b', '\t', '\n', '\u000b', '\f', '\r', '\u000e', '\u000f', '\u0010', '\u0011', '\u0012', '\u0013', '\u0014', '\u0015', '\u0016', '\u0017', '\u0018', '\u0019', '\u001a', '\u001b', '\u001c', '\u001d', '\u001e', '\u001f', ' ', '!', '"', '#', '$', '%', '&', '\'', '(', ')', '*', '+', ',', '-', '.', '/', '┘á', '┘í', '┘ó', '┘ú', '┘ñ', '┘Ñ', '┘ª', '┘º', '┘¿', '┘⌐', ':', ';', '<', '=', '>', '?', '@', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '[', '\\', ']', '^', '_', '`', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '{', '|', '}', '~', '\u007f'};
  5.  
  6.    public String getCharacterEncoding() {
  7.       return "8859-6";
  8.    }
  9.  
  10.    public ByteToChar8859_6() {
  11.       super.byteToCharTable = this.byteToCharTable;
  12.    }
  13. }
  14.