comparison app/src/main/java/org/tn5250j/encoding/builtin/CCSID278.java @ 438:d29cce60f393

migrate from Eclipse to Android Studio
author Carl Byington <carl@five-ten-sg.com>
date Thu, 03 Dec 2015 11:23:55 -0800
parents src/org/tn5250j/encoding/builtin/CCSID278.java@77ac18bc1b2f
children
comparison
equal deleted inserted replaced
437:208b31032318 438:d29cce60f393
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 278<->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/ccsid278.jsp
34 */
35 public final class CCSID278 extends CodepageConverterAdapter {
36
37 public final static String NAME = "278";
38 public final static String DESCR = "CECP: Finland, Sweden";
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', '\u00E2',
55 '{', '\u00E0', '\u00E1', '\u00E3', '}', '\u00E7', '\u00F1',
56 '\u00A7', '.', '<', '(', '+', '!', '&', '`', '\u00EA', '\u00EB',
57 '\u00E8', '\u00ED', '\u00EE', '\u00EF', '\u00EC', '\u00DF',
58 '\u00A4', '\u00C5', '*', ')', ';', '^', '-', '/', '\u00C2', '#',
59 '\u00C0', '\u00C1', '\u00C3', '$', '\u00C7', '\u00D1', '\u00F6',
60 ',', '%', '_', '>', '?', '\u00F8', '\\', '\u00CA', '\u00CB',
61 '\u00C8', '\u00CD', '\u00CE', '\u00CF', '\u00CC', '\u00E9', ':',
62 '\u00C4', '\u00D6', '\'', '=', '"', '\u00D8', 'a', 'b', 'c', 'd',
63 'e', 'f', 'g', 'h', 'i', '\u00AB', '\u00BB', '\u00F0', '\u00FD',
64 '\u00FE', '\u00B1', '\u00B0', 'j', 'k', 'l', 'm', 'n', 'o', 'p',
65 'q', 'r', '\u00AA', '\u00BA', '\u00E6', '\u00B8', '\u00C6', ']',
66 '\u00B5', '\u00FC', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z',
67 '\u00A1', '\u00BF', '\u00D0', '\u00DD', '\u00DE', '\u00AE',
68 '\u00A2', '\u00A3', '\u00A5', '\u00B7', '\u00A9', '[', '\u00B6',
69 '\u00BC', '\u00BD', '\u00BE', '\u00AC', '|', '\u00AF', '\u00A8',
70 '\u00B4', '\u00D7', '\u00E4', 'A', 'B', 'C', 'D', 'E', 'F', 'G',
71 'H', 'I', '\u00AD', '\u00F4', '\u00A6', '\u00F2', '\u00F3',
72 '\u00F5', '\u00E5', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R',
73 '\u00B9', '\u00FB', '~', '\u00F9', '\u00FA', '\u00FF', '\u00C9',
74 '\u00F7', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '\u00B2',
75 '\u00D4', '@', '\u00D2', '\u00D3', '\u00D5', '0', '1', '2', '3',
76 '4', '5', '6', '7', '8', '9', '\u00B3', '\u00DB', '\u00DC',
77 '\u00D9', '\u00DA', '\u009F'
78 };
79
80 public String getName() {
81 return NAME;
82 }
83
84 public String getDescription() {
85 return DESCR;
86 }
87
88 public String getEncoding() {
89 return NAME;
90 }
91
92 @Override
93 protected char[] getCodePage() {
94 return codepage;
95 }
96 }