org.jresearch.flexess.models.expression.OperationCall Maven / Gradle / Ivy
/**
*
*
*
* $Id: OperationCall.java 1386 2007-06-09 08:37:03Z stas $
*/
package org.jresearch.flexess.models.expression;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EOperation;
/**
*
* A representation of the model object 'Operation Call'.
*
*
*
* The following features are supported:
*
* - {@link org.jresearch.flexess.models.expression.OperationCall#getOperationName Operation Name}
* - {@link org.jresearch.flexess.models.expression.OperationCall#getOperation Operation}
* - {@link org.jresearch.flexess.models.expression.OperationCall#getArguments Arguments}
*
*
*
* @see org.jresearch.flexess.models.expression.ExpressionPackage#getOperationCall()
* @model
* @generated
*/
public interface OperationCall extends FeatureCall {
/**
* Returns the value of the 'Operation Name' attribute.
*
*
* If the meaning of the 'Operation Name' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Operation Name' attribute.
* @see org.jresearch.flexess.models.expression.ExpressionPackage#getOperationCall_OperationName()
* @model changeable="false" derived="true"
* @generated
*/
String getOperationName();
/**
* Returns the value of the 'Operation' reference.
*
*
* If the meaning of the 'Operation' reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Operation' reference.
* @see #setOperation(EOperation)
* @see org.jresearch.flexess.models.expression.ExpressionPackage#getOperationCall_Operation()
* @model
* @generated
*/
EOperation getOperation();
/**
* Sets the value of the '{@link org.jresearch.flexess.models.expression.OperationCall#getOperation Operation}' reference.
*
*
* @param value the new value of the 'Operation' reference.
* @see #getOperation()
* @generated
*/
void setOperation(EOperation value);
/**
* Returns the value of the 'Arguments' containment reference list.
* The list contents are of type {@link org.jresearch.flexess.models.expression.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.jresearch.flexess.models.expression.ExpressionPackage#getOperationCall_Arguments()
* @model type="org.jresearch.flexess.models.expression.Expression" containment="true"
* @generated
*/
EList getArguments();
} // OperationCall
© 2015 - 2024 Weber Informatics LLC | Privacy Policy