Marks the present position in the stream. Subsequent calls to reset() will attempt to reposition the stream to this point. @param readAheadLimit 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 th
(int readAheadLimit)
| 72 | * Therefore large values should be used with care. |
| 73 | */ |
| 74 | @Override |
| 75 | public void mark(int readAheadLimit) throws IOException { |
| 76 | lineMark = line; |
| 77 | columnMark = column; |
| 78 | super.mark(readAheadLimit); |
| 79 | } |
| 80 | |
| 81 | /** |
| 82 | * Resets the stream to the most recent mark. |
no outgoing calls