Get the current line number of the reader. Used to define the "lineNumber" property in JavaScript. The line number starts at 0 and increments with each line read. @return the current line number (0-based) of the file reader @throws FileNotFoundException if the file cannot be found or opened for
()
| 223 | * @throws FileNotFoundException if the file cannot be found or opened for reading |
| 224 | */ |
| 225 | @JSGetter |
| 226 | public int getLineNumber() throws FileNotFoundException { |
| 227 | return getReader().getLineNumber(); |
| 228 | } |
| 229 | |
| 230 | /** |
| 231 | * Close the file streams. |
no test coverage detected