Package | Description |
---|---|
org.stekikun.dolmen.common |
Modifier and Type | Method and Description |
---|---|
Prompt.TermStream |
Prompt.TermStream.bg(Prompt.Colors c)
Sets the background text color to
c . |
Prompt.TermStream |
Prompt.TermStream.blink()
Enables the 'blink' text style.
|
Prompt.TermStream |
Prompt.TermStream.bold()
Enables the 'bold' text style.
|
Prompt.TermStream |
Prompt.TermStream.clear()
Reset the current text attributes to default.
|
Prompt.TermStream |
Prompt.TermStream.dim()
Enables the 'dim' text style.
|
Prompt.TermStream |
Prompt.TermStream.fg(Prompt.Colors c)
Sets the foreground text color to
c . |
Prompt.TermStream |
Prompt.TermStream.newline()
Prints a system line separator.
|
Prompt.TermStream |
Prompt.TermStream.print(char c)
Prints the given character to the stream.
|
Prompt.TermStream |
Prompt.TermStream.print(String s)
Prints the given string to the stream.
|
Prompt.TermStream |
Prompt.TermStream.println(String s)
Prints the given string followed by a system line separator.
|
Prompt.TermStream |
Prompt.TermStream.reverse()
Enables the 'reverse' text style.
|
Prompt.TermStream |
Prompt.TermStream.spaces(int nspaces)
Prints the given number of spaces (' ').
|
Prompt.TermStream |
Prompt.TermStream.underlined()
Enables the 'underlined' text style.
|