It models the inequality operator greater than (>). More...
#include <PropertyIsGreaterThan.h>
Public Types | |
| typedef void | ReturnType |
| typedef Visitor | VisitorType |
Public Member Functions | |
| virtual ReturnType | accept (VisitorType &guest) const=0 |
| It call the visit method from the guest object. More... | |
Initializer Methods | |
Methods related to instantiation and destruction. | |
| PropertyIsGreaterThan (Expression *arg1, Expression *arg2) | |
| Constructor. More... | |
| ~PropertyIsGreaterThan () | |
| Destructor. More... | |
Accessor methods | |
Methods used to get or set properties. | |
| void | setFirst (Expression *first) |
| It sets the first operand. More... | |
| Expression * | getFirst () const |
| It returns the first operand. More... | |
| void | setSecond (Expression *second) |
| It sets the second operand. More... | |
| Expression * | getSecond () const |
| It returns the second operand. More... | |
| void | enableMatchCase () |
| It enables the match case flag. So comparisons will be case sensitive. More... | |
| void | disableMatchCase () |
| It disables the match case flag. So comparisons will not be case sensitive. More... | |
| ComparisonOp * | clone () const |
| It creates a new copy of this object. More... | |
Accessor methods | |
Methods used to get or set properties. | |
| const char * | getName () const |
| It returns the operator name. More... | |
| void | setName (const char *opName) |
| It sets the operator name. More... | |
Protected Attributes | |
| Expression * | m_first |
| first operand (mandatory). More... | |
| bool | m_matchCase |
| Optional (default: true). More... | |
| const char * | m_name |
| Operator name. More... | |
| Expression * | m_second |
| second operand (mandatory). More... | |
It models the inequality operator greater than (>).
Definition at line 46 of file PropertyIsGreaterThan.h.
|
inherited |
Definition at line 58 of file BaseVisitable.h.
|
inherited |
Definition at line 57 of file BaseVisitable.h.
|
inline |
Constructor.
| arg1 | The first argument. |
| arg2 | The second argument. |
Definition at line 65 of file PropertyIsGreaterThan.h.
|
inline |
Destructor.
Definition at line 68 of file PropertyIsGreaterThan.h.
|
pure virtualinherited |
It call the visit method from the guest object.
| guest | The guest or visitor. |
|
virtualinherited |
It creates a new copy of this object.
Implements te::fe::AbstractOp.
|
inherited |
It disables the match case flag. So comparisons will not be case sensitive.
|
inherited |
It enables the match case flag. So comparisons will be case sensitive.
|
inherited |
It returns the first operand.
|
inlineinherited |
|
inherited |
It returns the second operand.
|
inherited |
It sets the first operand.
| first | The first operand. |
|
inlineinherited |
It sets the operator name.
| opName | The operator name. |
Definition at line 89 of file AbstractOp.h.
|
inherited |
It sets the second operand.
| second | The second operand. |
|
protectedinherited |
first operand (mandatory).
Definition at line 159 of file BinaryComparisonOp.h.
|
protectedinherited |
Optional (default: true).
Definition at line 161 of file BinaryComparisonOp.h.
|
protectedinherited |
Operator name.
Definition at line 123 of file AbstractOp.h.
|
protectedinherited |
second operand (mandatory).
Definition at line 160 of file BinaryComparisonOp.h.