view src/org/tn5250j/encoding/ICodePage.java @ 73:accf93be8c12
tn5250
update documentation; use xterm-256color as default terminal type
author
Carl Byington <carl@five-ten-sg.com>
date
Sat, 14 Jun 2014 08:54:34 -0700 (2014-06-14)
parents
b29b39f386a4
children
77ac18bc1b2f
line source
+ − package org.tn5250j.encoding;
+ −
+ − public interface ICodePage {
+ −
+ − /**
+ − * Convert a single byte (or maybe more bytes which representing one character) to a Unicode character.
+ − *
+ − * @param index
+ − * @return
+ − */
+ − public abstract char ebcdic2uni(int index);
+ −
+ − /**
+ − * Convert a Unicode character in it's byte representation.
+ − * Therefore, only 8bit codepages are supported.
+ − *
+ − * @param index
+ − * @return
+ − */
+ − public abstract byte uni2ebcdic(char index);
+ −
+ − }