jltools.lex
Class IntegerLiteral

java.lang.Object
  |
  +--jltools.lex.Token
        |
        +--jltools.lex.Literal
              |
              +--jltools.lex.NumericLiteral
                    |
                    +--jltools.lex.IntegerLiteral

public class IntegerLiteral
extends NumericLiteral

A token class for int literals.


Constructor Summary
IntegerLiteral(Position position, int i, int sym)
           
 
Methods inherited from class jltools.lex.NumericLiteral
getValue, toString
 
Methods inherited from class jltools.lex.Token
escape, getPosition, symbol
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

IntegerLiteral

public IntegerLiteral(Position position,
                      int i,
                      int sym)