ti.swing.console |
|
Java Source File Name | Type | Comment |
Attribute.java | Interface | An attribute is a factory for regions that apply the particular attribute. |
BgColorAttribute.java | Class | An attribute to modify the background color. |
ColorInputHandler.java | Class | An input handler which provides support for color, by use of escaped
sequences of characters. |
Console.java | Class | The console is a swing component used to display a character stream. |
ConsoleBuffer.java | Class | The console-buffer is the actual "core" of the console, leaving all the
details of being a swing component (resizing, scrollbar, etc.) to the
public class
Console . |
ConsoleGraphics.java | Class | Sorta like java.awt.Graphics, except that it is tailored to drawing text.
You can set an inverse attribute, a background color, a foreground color.
When drawing text, the background is cleared to the bg color. |
ConsoleKeyListener.java | Class | Handle keyboard input, and provide a reader interface.... |
ConsoleTabCompleter.java | Interface | To add tab completion, the
ConsoleKeyListener uses an instance of
this class to implement tab completion. |
FgColorAttribute.java | Class | An attribute to modify the foreground (ie text) color. |
InputAdapter.java | Class | An
InputHandler adapter, provides default methods that just fwd the
request to the parent. |
InputHandler.java | Interface | The way data gets input to the
Console is via an input handler. |
InverseAttribute.java | Class | An attribute to flip the bg and fg color. |
LogInputHandler.java | Class | The LogInputHandler class logs everything written to a console to an output
stream. |
Region.java | Class | A region gets mapped over a section of a character stream. |
Row.java | Class | Row is a utility class used by
ConsoleBuffer to managed data for a
particular row. |
Test.java | Class | For testing the console. |