org.openxma.dsl.dom.model.SelectClass Maven / Gradle / Ivy
/**
*
*
*
* $Id$
*/
package org.openxma.dsl.dom.model;
import org.eclipse.emf.common.util.EList;
/**
*
* A representation of the model object 'Select Class'.
*
*
*
* The following features are supported:
*
* - {@link org.openxma.dsl.dom.model.SelectClass#getClass_ Class}
* - {@link org.openxma.dsl.dom.model.SelectClass#getArguments Arguments}
*
*
*
* @see org.openxma.dsl.dom.DomPackage#getSelectClass()
* @model
* @generated
*/
public interface SelectClass extends SelectStatement {
/**
* Returns the value of the 'Class' attribute.
*
*
* If the meaning of the 'Class' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Class' attribute.
* @see #setClass(String)
* @see org.openxma.dsl.dom.DomPackage#getSelectClass_Class()
* @model
* @generated
*/
String getClass_();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.SelectClass#getClass_ Class}' attribute.
*
*
* @param value the new value of the 'Class' attribute.
* @see #getClass_()
* @generated
*/
void setClass(String value);
/**
* Returns the value of the 'Arguments' containment reference list.
* The list contents are of type {@link org.openxma.dsl.dom.model.Expression}.
*
*
* If the meaning of the 'Arguments' containment reference list isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Arguments' containment reference list.
* @see org.openxma.dsl.dom.DomPackage#getSelectClass_Arguments()
* @model containment="true"
* @generated
*/
EList getArguments();
} // SelectClass