comparison src/org/tn5250j/encoding/builtin/ICodepageConverter.java @ 112:77ac18bc1b2f

cleanup java formatting
author Carl Byington <carl@five-ten-sg.com>
date Wed, 18 Jun 2014 13:03:01 -0700
parents b29b39f386a4
children
comparison
equal deleted inserted replaced
111:6a0ad4d384ea 112:77ac18bc1b2f
3 import org.tn5250j.encoding.ICodePage; 3 import org.tn5250j.encoding.ICodePage;
4 4
5 /** 5 /**
6 * Interface for classes which do the translation from 6 * Interface for classes which do the translation from
7 * EBCDIC bytes to Unicode characters and vice versa. 7 * EBCDIC bytes to Unicode characters and vice versa.
8 * 8 *
9 */ 9 */
10 public interface ICodepageConverter extends ICodePage { 10 public interface ICodepageConverter extends ICodePage {
11 11
12 /** 12 /**
13 * Returns an name/ID for this converter. 13 * Returns an name/ID for this converter.
14 * Example '273' or 'CP1252'. This name should be unique, 14 * Example '273' or 'CP1252'. This name should be unique,
15 * cause it's used in user settungs and so on. 15 * cause it's used in user settungs and so on.
16 * 16 *
17 * @return 17 * @return
18 */ 18 */
19 public abstract String getName(); 19 public abstract String getName();
20 20
21 /** 21 /**
22 * Returns a short description for this converter. 22 * Returns a short description for this converter.
23 * For Example '273 - German, EBCDIC' 23 * For Example '273 - German, EBCDIC'
24 * 24 *
25 * @return 25 * @return
26 */ 26 */
27 public abstract String getDescription(); 27 public abstract String getDescription();
28 28
29 /** 29 /**
30 * Does special initialization stuff for this converter. 30 * Does special initialization stuff for this converter.
31 */ 31 */
32 public abstract ICodepageConverter init(); 32 public abstract ICodepageConverter init();
33 33
34 } 34 }