tnt
Class Constants

java.lang.Object
  extended by tnt.Constants

public final class Constants
extends java.lang.Object

Stores global constansts for the TnTookit.

Version:
1.0 - 02/2006
Author:
Steven J. Castellucci

Field Summary
static int BUFF_LARGE
          The size of a large buffer.
static int BUFF_SMALL
          The size of a small buffer.
static java.awt.Color COLOR
          The default color.
static java.lang.String CORPORA_DIR
          The relative path to the directory containing the word-frequency files.
static java.lang.String CPY_RT_YEAR
          The text representing the copyright year(s).
static java.lang.String HELP_DIR
          The relative path to the directory containing the help files.
static java.lang.String ICON_PATH
          The icon representing the TnToolkit.
static java.lang.String IMAGES_DIR
          The relative path to the directory containing image files of keyboards.
static char NEXT
          The character representing a press of the NEXT key.
static char SPACE
          The character representing a press of the SPACE key.
static java.lang.String TNT_EXT
          The file extension for workspace files.
static java.lang.String VERSION
          The current version of TnToolkit.
static java.lang.String WORDFREQ_FILE
          The file name of the default word-frequency file.
 
Constructor Summary
Constants()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

BUFF_SMALL

public static final int BUFF_SMALL
The size of a small buffer.

See Also:
Constant Field Values

BUFF_LARGE

public static final int BUFF_LARGE
The size of a large buffer.

See Also:
Constant Field Values

SPACE

public static final char SPACE
The character representing a press of the SPACE key. The SPACE key is that which, when pressed, completes input of the current word and inserts a space character.

See Also:
Constant Field Values

NEXT

public static final char NEXT
The character representing a press of the NEXT key. The NEXT key is that which, when pressed, displays the next word in the series of similarly ambiguous words (i.e., words with the same keystrokes).

See Also:
Constant Field Values

COLOR

public static final java.awt.Color COLOR
The default color.


ICON_PATH

public static final java.lang.String ICON_PATH
The icon representing the TnToolkit.

See Also:
Constant Field Values

CPY_RT_YEAR

public static final java.lang.String CPY_RT_YEAR
The text representing the copyright year(s).

See Also:
Constant Field Values

CORPORA_DIR

public static final java.lang.String CORPORA_DIR
The relative path to the directory containing the word-frequency files.

See Also:
Constant Field Values

IMAGES_DIR

public static final java.lang.String IMAGES_DIR
The relative path to the directory containing image files of keyboards.

See Also:
Constant Field Values

HELP_DIR

public static final java.lang.String HELP_DIR
The relative path to the directory containing the help files.

See Also:
Constant Field Values

TNT_EXT

public static final java.lang.String TNT_EXT
The file extension for workspace files.

See Also:
Constant Field Values

VERSION

public static final java.lang.String VERSION
The current version of TnToolkit.

See Also:
Constant Field Values

WORDFREQ_FILE

public static final java.lang.String WORDFREQ_FILE
The file name of the default word-frequency file.

See Also:
Constant Field Values
Constructor Detail

Constants

public Constants()