org.openxma.dsl.dom.model.InExpression Maven / Gradle / Ivy
/**
*
*
*
* $Id$
*/
package org.openxma.dsl.dom.model;
/**
*
* A representation of the model object 'In Expression'.
*
*
*
* The following features are supported:
*
* - {@link org.openxma.dsl.dom.model.InExpression#getExpression Expression}
* - {@link org.openxma.dsl.dom.model.InExpression#isNot Not}
* - {@link org.openxma.dsl.dom.model.InExpression#getOperator Operator}
* - {@link org.openxma.dsl.dom.model.InExpression#getIn In}
*
*
*
* @see org.openxma.dsl.dom.DomPackage#getInExpression()
* @model
* @generated
*/
public interface InExpression 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#getInExpression_Expression()
* @model containment="true"
* @generated
*/
Expression getExpression();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.InExpression#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#getInExpression_Not()
* @model
* @generated
*/
boolean isNot();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.InExpression#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#getInExpression_Operator()
* @model
* @generated
*/
String getOperator();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.InExpression#getOperator Operator}' attribute.
*
*
* @param value the new value of the 'Operator' attribute.
* @see #getOperator()
* @generated
*/
void setOperator(String value);
/**
* Returns the value of the 'In' containment reference.
*
*
* If the meaning of the 'In' containment reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'In' containment reference.
* @see #setIn(Expression)
* @see org.openxma.dsl.dom.DomPackage#getInExpression_In()
* @model containment="true"
* @generated
*/
Expression getIn();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.InExpression#getIn In}' containment reference.
*
*
* @param value the new value of the 'In' containment reference.
* @see #getIn()
* @generated
*/
void setIn(Expression value);
} // InExpression