com.sun.tools.javac.util
Interface LayoutCharacters

All Known Implementing Classes:
SeeTagImpl

public interface LayoutCharacters

An interface containing layout character constants used in Java programs.

This is NOT part of any API supported by Sun Microsystems. If you write code that depends on this, you do so at your own risk. This code and its internal interfaces are subject to change or deletion without notice.


Field Summary
static byte CR
          Carriage return character.
static int DiagInc
          Diagnostic standard indentation
static byte EOI
          End of input character.
static byte FF
          Form feed character.
static byte LF
          Line feed character.
static byte TAB
          Tabulator character.
static int TabInc
          Tabulator column increment.
 

Field Detail

TabInc

static final int TabInc
Tabulator column increment.

See Also:
Constant Field Values

DiagInc

static final int DiagInc
Diagnostic standard indentation

See Also:
Constant Field Values

TAB

static final byte TAB
Tabulator character.

See Also:
Constant Field Values

LF

static final byte LF
Line feed character.

See Also:
Constant Field Values

FF

static final byte FF
Form feed character.

See Also:
Constant Field Values

CR

static final byte CR
Carriage return character.

See Also:
Constant Field Values

EOI

static final byte EOI
End of input character. Used as a sentinel to denote the character one beyond the last defined character in a source file.

See Also:
Constant Field Values