public abstract class BinaryExpression extends Object implements Expression
Modifier and Type | Field and Description |
---|---|
protected Expression |
leftExpression |
protected boolean |
not |
protected Expression |
rightExpression |
Constructor and Description |
---|
BinaryExpression() |
Modifier and Type | Method and Description |
---|---|
Expression |
getLeftExpression() |
Expression |
getRightExpression() |
boolean |
isNot() |
void |
setLeftExpression(Expression leftExpression) |
void |
setNot(boolean not) |
void |
setRightExpression(Expression rightExpression) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
accept, toString
protected Expression leftExpression
protected Expression rightExpression
protected boolean not
public Expression getLeftExpression()
public void setLeftExpression(Expression leftExpression)
leftExpression
- the leftExpression to setpublic Expression getRightExpression()
public void setRightExpression(Expression rightExpression)
rightExpression
- the rightExpression to setpublic boolean isNot()
public void setNot(boolean not)
not
- the not to setCopyright © 2018. All rights reserved.