FileDocCategorySizeDatePackage
AstInteger.javaAPI DocGlassfish v2 API2903Fri May 04 22:31:20 BST 2007com.sun.el.parser

AstInteger

public final class AstInteger extends SimpleNode
author
Jacob Hookom [jacob@hookom.net]
version
$Change: 181177 $$DateTime: 2001/06/26 08:45:09 $$Author: tcfujii $

Fields Summary
private Number
number
Constructors Summary
public AstInteger(int id)

        super(id);
    
Methods Summary
protected java.lang.NumbergetInteger()

        if (this.number == null) {
            try {
                this.number = Long.valueOf(this.image);
            } catch (ArithmeticException e1) {
                this.number = new BigInteger(this.image);
            }
        }
        return number;
    
public java.lang.ClassgetType(com.sun.el.lang.EvaluationContext ctx)

        return this.getInteger().getClass();
    
public java.lang.ObjectgetValue(com.sun.el.lang.EvaluationContext ctx)

        return this.getInteger();