Home | History | Annotate | Download | only in operations

Lines Matching refs:Expression

23 import org.apache.xpath.Expression;
32 public class Operation extends Expression implements ExpressionOwner
36 /** The left operand expression.
38 protected Expression m_left;
40 /** The right operand expression.
42 protected Expression m_right;
62 * Tell if this expression or it's subexpressions can traverse outside
83 * @param l The left expression operand.
84 * @param r The right expression operand.
86 public void setLeftRight(Expression l, Expression r)
135 /** @return the left operand of binary operation, as an Expression.
137 public Expression getLeftOperand(){
141 /** @return the right operand of binary operation, as an Expression.
143 public Expression getRightOperand(){
152 public Expression getExpression()
158 * @see ExpressionOwner#setExpression(Expression)
160 public void setExpression(Expression exp)
182 public Expression getExpression()
188 * @see ExpressionOwner#setExpression(Expression)
190 public void setExpression(Expression exp)
197 * @see Expression#deepEquals(Expression)
199 public boolean deepEquals(Expression expr)