jltools.lex
Class FloatLiteral

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

public class FloatLiteral
extends NumericLiteral

A token class for float literals.


Constructor Summary
FloatLiteral(Position position, float f, 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

FloatLiteral

public FloatLiteral(Position position,
                    float f,
                    int sym)