public boolean equals(Object _other) { AALStatementExpression other = (AALStatementExpression) _other; return mExpression.equals(other.mExpression); }
/** Just evaluate the expression. */ public void execute(AALExecutionState state) { mExpression.evaluate(state); }