com.go.tea.io |
|
Java Source File Name | Type | Comment |
DualOutput.java | Class | DualOutput wraps two OutputStreams so they can be written to simultaneously. |
EscapeReader.java | Class | This reader aids in decoding escapes in a character stream. |
LinePositionReader.java | Class | LinePositionReader aids in printing line numbers for error reporting. |
PositionReader.java | Class | The PositionReader tracks the postion in the stream of the next character
to be read. |
PushbackPositionReader.java | Class | The PushbackPositionReader is a kind of pushback reader that tracks the
postion in the stream of the next character to be read.
The java.io.PushbackReader allows arbitrary characters
to be pushed back. |
SourceReader.java | Class | The SourceReader provides several services for reading source input.
It calculates line numbers, position in the source file, supports two
character pushback, extracts code from text that allows mixed code and
plain text, and it processes unicode escape sequences that appear in
source code.
Readers return -1 when the end of the stream, has been reached, and so
does SourceReader. |
TagReader.java | Class | |
UnicodeReader.java | Class | This reader handles unicode escapes in a character stream as defined by
The Java Language Specification. |