com.cburch.editor.tokens
Interface TokenizerListener<T extends BasicToken>
- Type Parameters:
T - the type of tokens maintained by the tokenizer.
public interface TokenizerListener<T extends BasicToken>
The interface that classes can implement in order to listen
to modifications made to the list of tokens maintained by
a tokenizer.
- Version:
- 0.1 2005-05-31
- Author:
- Carl Burch
|
Method Summary |
void |
rangeReplaced(TokenizerEvent<T> event)
Called whenever a tokenizer modifies the list of tokens
for which it is responsible. |
rangeReplaced
void rangeReplaced(TokenizerEvent<T> event)
- Called whenever a tokenizer modifies the list of tokens
for which it is responsible. See
TokenizerEvent to
learn about what the event looks like.
- Parameters:
event - a description of the modification.