mirror of
https://github.com/ethauvin/JSON-java.git
synced 2025-06-17 07:50:52 -07:00
more comments
This commit is contained in:
parent
f76fbe7005
commit
237bf0adb6
1 changed files with 12 additions and 6 deletions
|
@ -39,13 +39,19 @@ SOFTWARE.
|
||||||
* @version 2014-05-03
|
* @version 2014-05-03
|
||||||
*/
|
*/
|
||||||
public class JSONTokener {
|
public class JSONTokener {
|
||||||
|
/** current read character. */
|
||||||
private long character;
|
private long character;
|
||||||
|
/** flag to indicate if the end of the input has been found. */
|
||||||
private boolean eof;
|
private boolean eof;
|
||||||
private long index;
|
/** current read index of the input. */
|
||||||
private long line;
|
private long index;
|
||||||
private char previous;
|
/** current line of the input. */
|
||||||
private Reader reader;
|
private long line;
|
||||||
|
/** previous index of the input. */
|
||||||
|
private char previous;
|
||||||
|
/** Reader for the input. */
|
||||||
|
private final Reader reader;
|
||||||
|
/** flag to indicate that a previous character was requested. */
|
||||||
private boolean usePrevious;
|
private boolean usePrevious;
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue