fr.umlv.tatoo.runtime.parser
Interface ParserListener<T,P>

Type Parameters:
T - type of terminals.
P - type of productions.

public interface ParserListener<T,P>

Author:
julien

Method Summary
 void accept()
           
 void error(String message, T t)
           
 void reduce(P production)
           
 void shift(T t)
           
 

Method Detail

shift

void shift(T t)

reduce

void reduce(P production)

accept

void accept()

error

void error(String message,
           T t)