| uk.org.ponder.stringutil.WordParseCallback
WordParseCallback | interface WordParseCallback (Code) | | An interface used by a parser to report "words" it discovers.
|
Method Summary | |
void | reportWord(char[] characters, int start, int length) A callback reporting that a word has been seen in the input data. |
reportWord | void reportWord(char[] characters, int start, int length)(Code) | | A callback reporting that a word has been seen in the input data.
Parameters: characters - An array containing the word data. Parameters: start - The index at which the word data begins in the array. Parameters: length - The length of the word data. |
|
|