org.openxma.dsl.dom.model.Operation Maven / Gradle / Ivy
/**
*
*
*
* $Id$
*/
package org.openxma.dsl.dom.model;
import org.eclipse.emf.common.util.EList;
import org.openxma.dsl.core.model.IDocumentable;
/**
*
* A representation of the model object 'Operation'.
*
*
*
* The following features are supported:
*
* - {@link org.openxma.dsl.dom.model.Operation#getParameters Parameters}
* - {@link org.openxma.dsl.dom.model.Operation#getExpression Expression}
* - {@link org.openxma.dsl.dom.model.Operation#getDelegate Delegate}
*
*
*
* @see org.openxma.dsl.dom.DomPackage#getOperation()
* @model
* @generated
*/
public interface Operation extends DaoOperation, IDocumentable {
/**
* Returns the value of the 'Parameters' containment reference list.
* The list contents are of type {@link org.openxma.dsl.dom.model.Parameter}.
*
*
* If the meaning of the 'Parameters' containment reference list isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Parameters' containment reference list.
* @see org.openxma.dsl.dom.DomPackage#getOperation_Parameters()
* @model containment="true"
* @generated
*/
EList getParameters();
/**
* Returns the value of the 'Expression' attribute.
*
*
* If the meaning of the 'Expression' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Expression' attribute.
* @see #setExpression(String)
* @see org.openxma.dsl.dom.DomPackage#getOperation_Expression()
* @model
* @generated
*/
String getExpression();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.Operation#getExpression Expression}' attribute.
*
*
* @param value the new value of the 'Expression' attribute.
* @see #getExpression()
* @generated
*/
void setExpression(String value);
/**
* Returns the value of the 'Delegate' reference.
*
*
* If the meaning of the 'Delegate' reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Delegate' reference.
* @see org.openxma.dsl.dom.DomPackage#getOperation_Delegate()
* @model resolveProxies="false" transient="true" changeable="false" volatile="true" derived="true"
* @generated
*/
DelegateOperation getDelegate();
/**
*
*
* @generated NOT
*/
void setDelegate(DelegateOperation delegateOperation);
} // Operation