FileDocCategorySizeDatePackage
AstMult.javaAPI DocApache Tomcat 6.0.14723Fri Jul 20 04:20:30 BST 2007org.apache.el.parser

AstMult.java

/* Generated By:JJTree: Do not edit this line. AstMult.java */

package org.apache.el.parser;

import javax.el.ELException;

import org.apache.el.lang.ELArithmetic;
import org.apache.el.lang.EvaluationContext;


/**
 * @author Jacob Hookom [jacob@hookom.net]
 * @version $Change: 181177 $$DateTime: 2001/06/26 08:45:09 $$Author: markt $
 */
public final class AstMult extends ArithmeticNode {
    public AstMult(int id) {
        super(id);
    }

    public Object getValue(EvaluationContext ctx)
            throws ELException {
        Object obj0 = this.children[0].getValue(ctx);
        Object obj1 = this.children[1].getValue(ctx);
        return ELArithmetic.multiply(obj0, obj1);
    }
}