Package org.foray.fotree.value

Examples of org.foray.fotree.value.ExprAdditiveOper


    private ExprAdditiveOper evalAddition(final ExprAdditive op1,
            final ExprMultiplicative op2) throws PropertyException {
        if (op1 == null || op2 == null) {
            throw new PropertyException("Missing parameter: addition.");
        }
        return new ExprAdditiveOper(op1, op2, Expr.OPERATION_ADD);
    }
View Full Code Here


    private ExprAdditiveOper evalSubtraction(final ExprAdditive op1,
            final ExprMultiplicative op2) throws PropertyException {
        if (op1 == null || op2 == null) {
            throw new PropertyException("Missing parameter: subtraction.");
        }
        return new ExprAdditiveOper(op1, op2, Expr.OPERATION_SUBTRACT);
    }
View Full Code Here

TOP

Related Classes of org.foray.fotree.value.ExprAdditiveOper

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.