Home | History | Annotate | Download | only in operations

Lines Matching refs:Operation

19  * $Id: Operation.java 468655 2006-10-28 07:12:06Z minchau $
30 * The baseclass for a binary operation.
32 public class Operation extends Expression implements ExpressionOwner
80 * Set the left and right operand expressions for this operation.
95 * Execute a binary operation by calling execute on each of the operands,
101 * @return The XObject result of the operation.
119 * Apply the operation to two operands, and return the result.
125 * @return non-null reference to the XObject that represents the result of the operation.
135 /** @return the left operand of binary operation, as an Expression.
141 /** @return the right operand of binary operation, as an Expression.
162 exp.exprSetParent(Operation.this);
204 if(!m_left.deepEquals(((Operation)expr).m_left))
207 if(!m_right.deepEquals(((Operation)expr).m_right))