Home | History | Annotate | Download | only in impl

Lines Matching refs:Parser

21 import com.google.streamhtmlparser.Parser;
28 * An implementation of the {@code Parser} interface that is common to both
38 public class GenericParser implements Parser {
59 * Constructs a generic parser that is an exact copy of the
61 * change are shallow-copied (parser state table and state mappings).
75 * Tell the parser to process the provided {@code String}. This is just a
76 * convenience method that wraps over {@link Parser#parse(char)}.
91 * derived from a state-machine configuration file in the original C++ parser.
139 * Return the current state of the parser.
151 * Reset the parser back to its initial default state.
215 * Invoked when the parser enters a new state.
217 * @param currentState the current state of the parser
232 * Invoked when the parser exits a state.
234 * @param currentState the current state of the parser
251 * @param currentState the current state of the parser