Home | History | Annotate | Download | only in streamhtmlparser

Lines Matching defs:Parser

20  * Defines essential functionality that every parser we implement
26 * parser for escaping purposes.
29 * of the parser to better support conditional processing.
31 public interface Parser {
38 * Tell the parser to process the provided {@code char}. Throws exception
47 * Tell the parser to process the provided {@code String}. Throws exception
56 * Reset the parser back to its initial default state.
61 * Returns the current state of the parser. May be {@link #STATE_ERROR}
62 * if the parser encountered an error. Such an error may be recoverable
66 * @return current state of the parser
72 * @param lineNumber the line number to set in the parser
83 * @param columnNumber the column number to set in the parser