xjavadoc
final class JavaDocReader extends FilterReader
UNKNOWN: 3. januar 2002
| Field Summary | |
|---|---|
| boolean | atEnd |
| boolean | badChar |
| int | c |
| boolean | endOfLine |
| int | lastC |
| int | nextChar |
| int | _lineOffset |
| Constructor Summary | |
|---|---|
| JavaDocReader(Reader in) | |
| Method Summary | |
|---|---|
| int | available()
Returns the number of bytes that can be read without blocking.
|
| int | getLineOffset()
Returns the line offset we're currently reading
|
| int | read()
Reads a byte of data. |
| int | read(char[] b, int off, int len)
Reads into an array of bytes. |
| long | skip(long n)
Skips bytes of input.
|
Parameters: in the underlying reader, containing javadoc
Returns: the number of available bytes
Throws: IOException Describe the exception
Returns: line in the javadoc.
Returns: the byte read, or -1 if the end of the stream is reached.
Throws: IOException If an I/O error has occurred.
Parameters: b the buffer into which the data is read off the start offset of the data len the maximum number of bytes read
Returns: the actual number of bytes read, -1 is returned when the end of the stream is reached.
Throws: IOException If an I/O error has occurred.
Parameters: n bytes to be skipped
Returns: actual number of bytes skipped
Throws: IOException If an I/O error has occurred.