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

AstDeferredExpression

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

Fields Summary
Constructors Summary
public AstDeferredExpression(int id)

        super(id);
    
Methods Summary
public java.lang.ClassgetType(com.sun.el.lang.EvaluationContext ctx)

        return this.children[0].getType(ctx);
    
public java.lang.ObjectgetValue(com.sun.el.lang.EvaluationContext ctx)

        return this.children[0].getValue(ctx);
    
public booleanisReadOnly(com.sun.el.lang.EvaluationContext ctx)

        return this.children[0].isReadOnly(ctx);
    
public voidsetValue(com.sun.el.lang.EvaluationContext ctx, java.lang.Object value)

        this.children[0].setValue(ctx, value);