| 
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectjava.io.Reader
java.io.BufferedReader
groovy.io.LineColumnReader
public class LineColumnReader
The LineColumnReader is an extension to BufferedReader
 that keeps track of the line and column information of where the cursor is.
| Field Summary | 
|---|
| Fields inherited from class java.io.Reader | 
|---|
lock | 
| Constructor Summary | |
|---|---|
LineColumnReader(Reader reader)
Constructor wrapping a Reader
 (FileReader, FileReader, InputStreamReader, etc.) | 
|
| Method Summary | |
|---|---|
 void | 
close()
Closes the stream and releases any system resources associated with it.  | 
 long | 
getColumn()
 | 
 long | 
getColumnMark()
 | 
 long | 
getLine()
 | 
 long | 
getLineMark()
 | 
 void | 
mark(int readAheadLimit)
Marks the present position in the stream.  | 
 int | 
read()
Reads a single character.  | 
 int | 
read(char[] chars)
Reads characters into an array.  | 
 int | 
read(char[] chars,
     int startOffset,
     int length)
Reads characters into a portion of an array.  | 
 int | 
read(CharBuffer buffer)
Not implemented.  | 
 String | 
readLine()
Reads a line of text.  | 
 void | 
reset()
Resets the stream to the most recent mark.  | 
 void | 
setColumn(long column)
 | 
 void | 
setColumnMark(long columnMark)
 | 
 void | 
setLine(long line)
 | 
 void | 
setLineMark(long lineMark)
 | 
 long | 
skip(long toSkip)
Skips characters.  | 
| Methods inherited from class java.io.BufferedReader | 
|---|
markSupported, ready | 
| Methods inherited from class java.lang.Object | 
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
| Constructor Detail | 
|---|
public LineColumnReader(Reader reader)
Reader
 (FileReader, FileReader, InputStreamReader, etc.)
reader - the reader to wrap| Method Detail | 
|---|
public void mark(int readAheadLimit)
          throws IOException
mark in class BufferedReaderreadAheadLimit - Limit on the number of characters that may be read while still preserving the mark.
      An attempt to reset the stream after reading characters up to this limit or beyond may fail.
      A limit value larger than the size of the input buffer will cause a new buffer to be allocated whose size is no smaller than limit.
      Therefore large values should be used with care.
IOException
public void reset()
           throws IOException
reset in class BufferedReaderIOException
public int read()
         throws IOException
read in class BufferedReaderIOException
public int read(char[] chars,
                int startOffset,
                int length)
         throws IOException
read in class BufferedReaderchars - Destination array of charstartOffset - Offset at which to start storing characterslength - Maximum number of characters to read
IOException
public String readLine()
                throws IOException
readLine in class BufferedReaderIOException
public long skip(long toSkip)
          throws IOException
skip in class BufferedReadertoSkip - the number of characters to skip
IOException
public int read(char[] chars)
         throws IOException
read in class Readerchars - Destination buffer
IOExceptionpublic int read(CharBuffer buffer)
read in interface Readableread in class Readerbuffer - Destination buffer
UnsupportedOperationException - as the method is not implemented
public void close()
           throws IOException
close in interface Closeableclose in class BufferedReaderIOExceptionpublic long getColumn()
public void setColumn(long column)
public long getColumnMark()
public void setColumnMark(long columnMark)
public long getLine()
public void setLine(long line)
public long getLineMark()
public void setLineMark(long lineMark)
  | 
Copyright © 2003-2012 The Codehaus. All rights reserved. | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||