[all packages] 
[package G4ip] 
[class hierarchy] 
[index] 
java.lang.Object | +----G4ip.Parser
public class Parser
The following grammar is implemented:
| false                                     | ( Formula )                        | Formula Binop Formula
&, v, -> or <->
| [ FormulaList ,]* FormulaThe parser uses a stack where two actions are performed:

 Parser(String)
  Parser(String)
    
 getNextToken()
  getNextToken()
    ( ) , & v -> <-> false 
             and EOI 
   parseFormula()
  parseFormula()
     parseFormulae()
  parseFormulae()
     reduce()
  reduce()
    
 Parser
 Parserpublic Parser(String init_in);

 getNextToken
 getNextTokenpublic Token getNextToken() throws Exception;
( ) , & v -> <-> false 
             and EOI (end of input) public void reduce();
public Form parseFormula() throws Exception;
public Context parseFormulae() throws