Uses of Interface
fr.umlv.tatoo.runtime.lexer.LexerListener

Packages that use LexerListener
fr.umlv.tatoo.runtime.lexer   
fr.umlv.tatoo.runtime.tools   
 

Uses of LexerListener in fr.umlv.tatoo.runtime.lexer
 

Methods in fr.umlv.tatoo.runtime.lexer with parameters of type LexerListener
static
<R extends Rule,B extends CharacterBuffer>
Lexer<R,B>
Lexer.createLexer(B buffer, LexerListener<R,? super B> listener, R[] rules, ErrorHandler<? super B> errorHandler)
          Creates a new lexer process with a fix set of active rules.
static
<R extends Rule,B extends CharacterBuffer & ErrorContextBuffer<?>>
Lexer<R,B>
Lexer.createLexer(B buffer, LexerListener<R,? super B> listener, RuleActivator<R> activator)
          Creates a new lexer process with default error handling.
static
<R extends Rule,B extends CharacterBuffer>
Lexer<R,B>
Lexer.createLexer(B buffer, LexerListener<R,? super B> listener, RuleActivator<R> activator, ErrorHandler<? super B> errorHandler)
          Creates a new lexer process.
static
<R extends Rule,E extends CharacterBuffer & ErrorContextBuffer<?>>
Lexer<R,E>
Lexer.createLexer(E buffer, LexerListener<R,? super E> listener, R[] rules)
          Creates a new lexer process with a fix set of active rules and a default error handler.
 

Uses of LexerListener in fr.umlv.tatoo.runtime.tools
 

Classes in fr.umlv.tatoo.runtime.tools that implement LexerListener
 class AbstractLexerListener<R extends Rule,B extends TokenBuffer>