FileDocCategorySizeDatePackage
AstDeferredExpression.javaAPI DocApache Tomcat 6.0.141047Fri Jul 20 04:20:36 BST 2007org.apache.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: markt $

Fields Summary
Constructors Summary
public AstDeferredExpression(int id)

        super(id);
    
Methods Summary
public java.lang.ClassgetType(org.apache.el.lang.EvaluationContext ctx)

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

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

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

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