All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openxma.dsl.dom.model.BetweenExpression Maven / Gradle / Ivy

There is a newer version: 6.0.2
Show newest version
/**
 * 
 * 
 *
 * $Id$
 */
package org.openxma.dsl.dom.model;


/**
 * 
 * A representation of the model object 'Between Expression'.
 * 
 *
 * 

* The following features are supported: *

    *
  • {@link org.openxma.dsl.dom.model.BetweenExpression#getExpression Expression}
  • *
  • {@link org.openxma.dsl.dom.model.BetweenExpression#isNot Not}
  • *
  • {@link org.openxma.dsl.dom.model.BetweenExpression#getOperator Operator}
  • *
  • {@link org.openxma.dsl.dom.model.BetweenExpression#getLeft Left}
  • *
  • {@link org.openxma.dsl.dom.model.BetweenExpression#getRight Right}
  • *
*

* * @see org.openxma.dsl.dom.DomPackage#getBetweenExpression() * @model * @generated */ public interface BetweenExpression extends Expression { /** * Returns the value of the 'Expression' containment reference. * *

* If the meaning of the 'Expression' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Expression' containment reference. * @see #setExpression(Expression) * @see org.openxma.dsl.dom.DomPackage#getBetweenExpression_Expression() * @model containment="true" * @generated */ Expression getExpression(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.BetweenExpression#getExpression Expression}' containment reference. * * * @param value the new value of the 'Expression' containment reference. * @see #getExpression() * @generated */ void setExpression(Expression value); /** * Returns the value of the 'Not' attribute. * *

* If the meaning of the 'Not' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Not' attribute. * @see #setNot(boolean) * @see org.openxma.dsl.dom.DomPackage#getBetweenExpression_Not() * @model * @generated */ boolean isNot(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.BetweenExpression#isNot Not}' attribute. * * * @param value the new value of the 'Not' attribute. * @see #isNot() * @generated */ void setNot(boolean value); /** * Returns the value of the 'Operator' attribute. * *

* If the meaning of the 'Operator' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Operator' attribute. * @see #setOperator(String) * @see org.openxma.dsl.dom.DomPackage#getBetweenExpression_Operator() * @model * @generated */ String getOperator(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.BetweenExpression#getOperator Operator}' attribute. * * * @param value the new value of the 'Operator' attribute. * @see #getOperator() * @generated */ void setOperator(String value); /** * Returns the value of the 'Left' containment reference. * *

* If the meaning of the 'Left' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Left' containment reference. * @see #setLeft(Expression) * @see org.openxma.dsl.dom.DomPackage#getBetweenExpression_Left() * @model containment="true" * @generated */ Expression getLeft(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.BetweenExpression#getLeft Left}' containment reference. * * * @param value the new value of the 'Left' containment reference. * @see #getLeft() * @generated */ void setLeft(Expression value); /** * Returns the value of the 'Right' containment reference. * *

* If the meaning of the 'Right' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Right' containment reference. * @see #setRight(Expression) * @see org.openxma.dsl.dom.DomPackage#getBetweenExpression_Right() * @model containment="true" * @generated */ Expression getRight(); /** * Sets the value of the '{@link org.openxma.dsl.dom.model.BetweenExpression#getRight Right}' containment reference. * * * @param value the new value of the 'Right' containment reference. * @see #getRight() * @generated */ void setRight(Expression value); } // BetweenExpression




© 2015 - 2024 Weber Informatics LLC | Privacy Policy