public interface TerminalCell
Modifier and Type | Field and Description |
---|---|
static int |
COLOR_HOST_BLUE
Character cell color is blue.
|
static int |
COLOR_HOST_GREEN
Character cell color is green.
|
static int |
COLOR_HOST_NOCOLOR
No color attribute is provided for this character cell.
|
static int |
COLOR_HOST_PINK
Character cell color is pink.
|
static int |
COLOR_HOST_RED
Character cell color is red.
|
static int |
COLOR_HOST_TURQUOISE
Character cell color is turquoise.
|
static int |
COLOR_HOST_WHITE
Character cell color is white.
|
static int |
COLOR_HOST_YELLOW
Character cell color is yellow.
|
static byte |
FONT_APL_SYMBOL
Character cell font is the IBM APL symbol font.
|
static byte |
FONT_HEX_DIAGNOSTIC
Character cell font is the hexadecimal diagnostic font.
|
static byte |
FONT_IBM_STATUS_LINE
Character cell font is the IBM status line font.
|
static byte |
FONT_STANDARD
Character cell font is the standard terminal text font.
|
static byte |
FONT_VT_HP_CONTROL
Character cell font is the VT and HP terminal control font.
|
static byte |
FONT_VT_HP_SYMBOL
Character cell font is the VT and HP terminal symbol font.
|
Modifier and Type | Method and Description |
---|---|
char |
getCharacter()
Gets the character contained in this terminal cell.
|
int |
getColor()
Gets the color which the terminal should use to display this character.
|
byte |
getFont()
Gets the font index sent by the host for this terminal cell.
|
boolean |
isBlinking()
Gets the blink attribute.
|
boolean |
isColumnSeparated()
Gets the column-separator attribute.
|
boolean |
isErrorLine()
Gets the error-line attribute.
|
boolean |
isFieldEnd()
Gets the field-end attribute.
|
boolean |
isFieldStart()
Gets the field-start attribute.
|
boolean |
isHalfBrite()
Gets the halfbrite attribute.
|
boolean |
isIntense()
Gets the high-intensity attribute.
|
boolean |
isNonDisplay()
Gets the non-display attribute.
|
boolean |
isNumeric()
Gets the numeric attribute.
|
boolean |
isPenDetect()
Gets the pen-detect attribute.
|
boolean |
isProtected()
Gets the protected attribute.
|
boolean |
isReverse()
Gets the inverse-video attribute.
|
boolean |
isStatusLine()
Gets the status-line attribute.
|
boolean |
isSysRequest()
Gets the sys-request attribute.
|
boolean |
isUnderscore()
Gets the underscore attribute.
|
static final int COLOR_HOST_NOCOLOR
getColor()
.static final int COLOR_HOST_BLUE
getColor()
.static final int COLOR_HOST_GREEN
getColor()
.static final int COLOR_HOST_PINK
getColor()
.static final int COLOR_HOST_RED
getColor()
.static final int COLOR_HOST_TURQUOISE
getColor()
.static final int COLOR_HOST_WHITE
getColor()
.static final int COLOR_HOST_YELLOW
getColor()
.static final byte FONT_STANDARD
getFont()
.static final byte FONT_IBM_STATUS_LINE
getFont()
.static final byte FONT_HEX_DIAGNOSTIC
getFont()
.static final byte FONT_APL_SYMBOL
getFont()
.static final byte FONT_VT_HP_SYMBOL
getFont()
.static final byte FONT_VT_HP_CONTROL
getFont()
.char getCharacter()
char
byte getFont()
Gets the font index sent by the host for this terminal cell.
Some host systems (and terminals) can display multiple fonts on the terminal. The font index tells the terminal which font to use to display this character.
FONT_STANDARD
FONT_APL_SYMBOL
FONT_IBM_STATUS_LINE
FONT_HEX_DIAGNOSTIC
FONT_VT_HP_SYMBOL
FONT_VT_HP_CONTROL
int getColor()
Gets the color which the terminal should use to display this character.
COLOR_HOST_NOCOLOR
COLOR_HOST_BLUE
COLOR_HOST_GREEN
COLOR_HOST_PINK
COLOR_HOST_RED
COLOR_HOST_TURQUOISE
COLOR_HOST_WHITE
COLOR_HOST_YELLOW
boolean isBlinking()
boolean isReverse()
boolean isUnderscore()
boolean isHalfBrite()
boolean isIntense()
boolean isProtected()
boolean isColumnSeparated()
boolean isPenDetect()
boolean isNonDisplay()
boolean isNumeric()
boolean isFieldStart()
boolean isFieldEnd()
boolean isStatusLine()
boolean isErrorLine()
boolean isSysRequest()