org.openxma.dsl.dom.model.SelectStatement Maven / Gradle / Ivy
/**
*
*
*
* $Id$
*/
package org.openxma.dsl.dom.model;
import org.eclipse.emf.common.util.EList;
/**
*
* A representation of the model object 'Select Statement'.
*
*
*
* The following features are supported:
*
* - {@link org.openxma.dsl.dom.model.SelectStatement#getFrom From}
* - {@link org.openxma.dsl.dom.model.SelectStatement#getJoin Join}
* - {@link org.openxma.dsl.dom.model.SelectStatement#getWhere Where}
* - {@link org.openxma.dsl.dom.model.SelectStatement#getGroupBy Group By}
* - {@link org.openxma.dsl.dom.model.SelectStatement#getHaving Having}
* - {@link org.openxma.dsl.dom.model.SelectStatement#getOrderBy Order By}
*
*
*
* @see org.openxma.dsl.dom.DomPackage#getSelectStatement()
* @model
* @generated
*/
public interface SelectStatement extends QlStatement {
/**
* Returns the value of the 'From' containment reference list.
* The list contents are of type {@link org.openxma.dsl.dom.model.FromRange}.
*
*
* If the meaning of the 'From' containment reference list isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'From' containment reference list.
* @see org.openxma.dsl.dom.DomPackage#getSelectStatement_From()
* @model containment="true"
* @generated
*/
EList getFrom();
/**
* Returns the value of the 'Join' containment reference list.
* The list contents are of type {@link org.openxma.dsl.dom.model.Join}.
*
*
* If the meaning of the 'Join' containment reference list isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Join' containment reference list.
* @see org.openxma.dsl.dom.DomPackage#getSelectStatement_Join()
* @model containment="true"
* @generated
*/
EList getJoin();
/**
* Returns the value of the 'Where' containment reference.
*
*
* If the meaning of the 'Where' containment reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Where' containment reference.
* @see #setWhere(Expression)
* @see org.openxma.dsl.dom.DomPackage#getSelectStatement_Where()
* @model containment="true"
* @generated
*/
Expression getWhere();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.SelectStatement#getWhere Where}' containment reference.
*
*
* @param value the new value of the 'Where' containment reference.
* @see #getWhere()
* @generated
*/
void setWhere(Expression value);
/**
* Returns the value of the 'Group By' containment reference list.
* The list contents are of type {@link org.openxma.dsl.dom.model.Expression}.
*
*
* If the meaning of the 'Group By' containment reference list isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Group By' containment reference list.
* @see org.openxma.dsl.dom.DomPackage#getSelectStatement_GroupBy()
* @model containment="true"
* @generated
*/
EList getGroupBy();
/**
* Returns the value of the 'Having' containment reference.
*
*
* If the meaning of the 'Having' containment reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Having' containment reference.
* @see #setHaving(Expression)
* @see org.openxma.dsl.dom.DomPackage#getSelectStatement_Having()
* @model containment="true"
* @generated
*/
Expression getHaving();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.SelectStatement#getHaving Having}' containment reference.
*
*
* @param value the new value of the 'Having' containment reference.
* @see #getHaving()
* @generated
*/
void setHaving(Expression value);
/**
* Returns the value of the 'Order By' containment reference list.
* The list contents are of type {@link org.openxma.dsl.dom.model.SortOrderElement}.
*
*
* If the meaning of the 'Order By' containment reference list isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Order By' containment reference list.
* @see org.openxma.dsl.dom.DomPackage#getSelectStatement_OrderBy()
* @model containment="true"
* @generated
*/
EList getOrderBy();
} // SelectStatement