The PropertyIsBetween element is defined as a compact way of encoding a range check. More...
#include <PropertyIsBetween.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.  | |
| PropertyIsBetween () | |
| It initializes a new PropertyIsBetween.  More... | |
| ~PropertyIsBetween () | |
| Destructor.  More... | |
Accessor methods  | |
Methods used to get or set properties.  | |
| void | setExpression (Expression *e) | 
| It sets the between expression.  More... | |
| Expression * | getExpression () const | 
| It returns the between expression.  More... | |
| void | setLowerBoundary (Expression *e) | 
| It sets the lower boundary expression.  More... | |
| Expression * | getLowerBoundary () const | 
| It returns the lower boundary expression.  More... | |
| void | setUpperBoundary (Expression *e) | 
| It sets the lower boundary expression.  More... | |
| Expression * | getUpperBoundary () const | 
| It returns the upper boundary expression.  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 | |
| const char * | m_name | 
| Operator name.  More... | |
Private Attributes | |
| Expression * | m_expression | 
| Mandatory.  More... | |
| Expression * | m_lowerBoundary | 
| Mandatory.  More... | |
| Expression * | m_upperBoundary | 
| Mandatory.  More... | |
The PropertyIsBetween element is defined as a compact way of encoding a range check.
The lower and upper boundary values are inclusive.
Definition at line 47 of file PropertyIsBetween.h.
      
  | 
  inherited | 
Definition at line 58 of file BaseVisitable.h.
      
  | 
  inherited | 
Definition at line 57 of file BaseVisitable.h.
| te::fe::PropertyIsBetween::PropertyIsBetween | ( | ) | 
It initializes a new PropertyIsBetween.
| te::fe::PropertyIsBetween::~PropertyIsBetween | ( | ) | 
Destructor.
      
  | 
  pure virtualinherited | 
It call the visit method from the guest object.
| guest | The guest or visitor. | 
| Expression* te::fe::PropertyIsBetween::getExpression | ( | ) | const | 
It returns the between expression.
| Expression* te::fe::PropertyIsBetween::getLowerBoundary | ( | ) | const | 
It returns the lower boundary expression.
      
  | 
  inlineinherited | 
| Expression* te::fe::PropertyIsBetween::getUpperBoundary | ( | ) | const | 
It returns the upper boundary expression.
| void te::fe::PropertyIsBetween::setExpression | ( | Expression * | e | ) | 
It sets the between expression.
| e | The between expression. | 
| void te::fe::PropertyIsBetween::setLowerBoundary | ( | Expression * | e | ) | 
It sets the lower boundary expression.
| e | The lower boundary expression. | 
      
  | 
  inlineinherited | 
It sets the operator name.
| opName | The operator name. | 
Definition at line 89 of file AbstractOp.h.
| void te::fe::PropertyIsBetween::setUpperBoundary | ( | Expression * | e | ) | 
It sets the lower boundary expression.
| e | The upper boundary expression. | 
      
  | 
  private | 
Mandatory.
Definition at line 124 of file PropertyIsBetween.h.
      
  | 
  private | 
Mandatory.
Definition at line 125 of file PropertyIsBetween.h.
      
  | 
  protectedinherited | 
Operator name.
Definition at line 120 of file AbstractOp.h.
      
  | 
  private | 
Mandatory.
Definition at line 126 of file PropertyIsBetween.h.