Mercurial > 510Connectbot
comparison src/org/tn5250j/encoding/builtin/CCSID1025.java @ 5:cbdff98c45ea tn5250
adding tn5250 files
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Thu, 22 May 2014 12:38:09 -0700 |
parents | |
children | b29b39f386a4 |
comparison
equal
deleted
inserted
replaced
4:1f5d9b76a183 | 5:cbdff98c45ea |
---|---|
1 /** | |
2 * $Id$ | |
3 * | |
4 * Title: tn5250J | |
5 * Copyright: Copyright (c) 2001,2009 | |
6 * Company: | |
7 * @author: master_jaf | |
8 * | |
9 * Description: | |
10 * Alternative (extended) implementation of a codepage converter CCSID 1025<->Unicode. | |
11 * | |
12 * | |
13 * This program is free software; you can redistribute it and/or modify | |
14 * it under the terms of the GNU General Public License as published by | |
15 * the Free Software Foundation; either version 2, or (at your option) | |
16 * any later version. | |
17 * | |
18 * This program is distributed in the hope that it will be useful, | |
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
21 * GNU General Public License for more details. | |
22 * | |
23 * You should have received a copy of the GNU General Public License | |
24 * along with this software; see the file COPYING. If not, write to | |
25 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330, | |
26 * Boston, MA 02111-1307 USA | |
27 * | |
28 */ | |
29 package org.tn5250j.encoding.builtin; | |
30 | |
31 /** | |
32 * @author master_jaf | |
33 * @see http://www-01.ibm.com/software/globalization/ccsid/ccsid1025.jsp | |
34 */ | |
35 public final class CCSID1025 extends CodepageConverterAdapter { | |
36 | |
37 public final static String NAME = "1025"; | |
38 public final static String DESCR = "Cyrillic Multilingual"; | |
39 | |
40 /* | |
41 * Char maps manually extracted from JTOpen v6.4. Because char maps can't be | |
42 * covered by any license, this should legal. | |
43 */ | |
44 private static final char[] codepage = { '\u0000', '\u0001', '\u0002', | |
45 '\u0003', '\u009C', '\t', '\u0086', '\u007F', '\u0097', '\u008D', | |
46 '\u008E', '\u000B', '\f', '\r', '\u000E', '\u000F', '\u0010', | |
47 '\u0011', '\u0012', '\u0013', '\u009D', '\u0085', '\u0008', | |
48 '\u0087', '\u0018', '\u0019', '\u0092', '\u008F', '\u001C', | |
49 '\u001D', '\u001E', '\u001F', '\u0080', '\u0081', '\u0082', | |
50 '\u0083', '\u0084', '\n', '\u0017', '\u001B', '\u0088', '\u0089', | |
51 '\u008A', '\u008B', '\u008C', '\u0005', '\u0006', '\u0007', | |
52 '\u0090', '\u0091', '\u0016', '\u0093', '\u0094', '\u0095', | |
53 '\u0096', '\u0004', '\u0098', '\u0099', '\u009A', '\u009B', | |
54 '\u0014', '\u0015', '\u009E', '\u001A', ' ', '\u00A0', '\u0452', | |
55 '\u0453', '\u0451', '\u0454', '\u0455', '\u0456', '\u0457', | |
56 '\u0458', '[', '.', '<', '(', '+', '!', '&', '\u0459', '\u045A', | |
57 '\u045B', '\u045C', '\u045E', '\u045F', '\u042A', '\u2116', | |
58 '\u0402', ']', '$', '*', ')', ';', '^', '-', '/', '\u0403', | |
59 '\u0401', '\u0404', '\u0405', '\u0406', '\u0407', '\u0408', | |
60 '\u0409', '|', ',', '%', '_', '>', '?', '\u040A', '\u040B', | |
61 '\u040C', '\u00AD', '\u040E', '\u040F', '\u044E', '\u0430', | |
62 '\u0431', '`', ':', '#', '@', '\'', '=', '"', '\u0446', 'a', 'b', | |
63 'c', 'd', 'e', 'f', 'g', 'h', 'i', '\u0434', '\u0435', '\u0444', | |
64 '\u0433', '\u0445', '\u0438', '\u0439', 'j', 'k', 'l', 'm', 'n', | |
65 'o', 'p', 'q', 'r', '\u043A', '\u043B', '\u043C', '\u043D', | |
66 '\u043E', '\u043F', '\u044F', '~', 's', 't', 'u', 'v', 'w', 'x', | |
67 'y', 'z', '\u0440', '\u0441', '\u0442', '\u0443', '\u0436', | |
68 '\u0432', '\u044C', '\u044B', '\u0437', '\u0448', '\u044D', | |
69 '\u0449', '\u0447', '\u044A', '\u042E', '\u0410', '\u0411', | |
70 '\u0426', '\u0414', '\u0415', '\u0424', '\u0413', '{', 'A', 'B', | |
71 'C', 'D', 'E', 'F', 'G', 'H', 'I', '\u0425', '\u0418', '\u0419', | |
72 '\u041A', '\u041B', '\u041C', '}', 'J', 'K', 'L', 'M', 'N', 'O', | |
73 'P', 'Q', 'R', '\u041D', '\u041E', '\u041F', '\u042F', '\u0420', | |
74 '\u0421', '\\', '\u00A7', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', | |
75 '\u0422', '\u0423', '\u0416', '\u0412', '\u042C', '\u042B', '0', | |
76 '1', '2', '3', '4', '5', '6', '7', '8', '9', '\u0417', '\u0428', | |
77 '\u042D', '\u0429', '\u0427', '\u009F', }; | |
78 | |
79 public String getName() { | |
80 return NAME; | |
81 } | |
82 | |
83 public String getDescription() { | |
84 return DESCR; | |
85 } | |
86 | |
87 public String getEncoding() { | |
88 return NAME; | |
89 } | |
90 | |
91 @Override | |
92 protected char[] getCodePage() { | |
93 return codepage; | |
94 } | |
95 } |