Uses of Interface
fr.umlv.tatoo.runtime.buffer.ErrorContextBuffer

Packages that use ErrorContextBuffer
fr.umlv.tatoo.runtime.buffer.impl   
fr.umlv.tatoo.runtime.lexer   
 

Uses of ErrorContextBuffer in fr.umlv.tatoo.runtime.buffer.impl
 

Classes in fr.umlv.tatoo.runtime.buffer.impl that implement ErrorContextBuffer
 class CharBufferWrapper
           
 class ReaderWrapper
          A ReadWrapper wraps a Reader in order to allow a lexer to process it and a developper to extract tokens recognized.
 

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

Methods in fr.umlv.tatoo.runtime.lexer with type parameters of type ErrorContextBuffer
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,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.
 

Methods in fr.umlv.tatoo.runtime.lexer with parameters of type ErrorContextBuffer
 void DefaultErrorHandler.handleError(ErrorContextBuffer<?> buffer)
          Handles an error occurring during the lexing process throwing a exception containing a string representation of the error context.