Home | History | Annotate | Download | only in message

Lines Matching defs:currentToken

66      * This is the header value that includes {@link #currentToken}.
72 * The token to be returned by the next call to {@link #currentToken}.
75 protected String currentToken;
78 * The position after {@link #currentToken} in {@link #currentHeader}.
102 return (this.currentToken != null);
117 if (this.currentToken == null) {
121 final String result = this.currentToken;
122 // updates currentToken, may trigger ParseException:
159 * If found, the token is stored in {@link #currentToken}.
163 * If not found, {@link #currentToken} is set to <code>null</code>.
190 this.currentToken = null;
195 this.currentToken = createToken(this.currentHeader, start, end);