blob: cb6dbc0ee55b250d32649d254f9e766e44e5c9a2 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2013, 2019 Willink Transformations and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* E.D.Willink - Initial API and implementation
*
* </copyright>
*/
package org.eclipse.qvtd.pivot.qvtschedule;
import org.eclipse.ocl.pivot.Operation;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Operation Call Node</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* An OPerationNode supports the invocation of an operation/iteratioon using its OperationSelfEdge/OperationParameterEdge parts.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.qvtd.pivot.qvtschedule.OperationCallNode#getReferredOperation <em>Referred Operation</em>}</li>
* </ul>
*
* @see org.eclipse.qvtd.pivot.qvtschedule.QVTschedulePackage#getOperationCallNode()
* @model
* @generated
*/
public interface OperationCallNode extends OperationNode {
/**
* Returns the value of the '<em><b>Referred Operation</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The Operation that this OperationCallNode uses.
* <!-- end-model-doc -->
* @return the value of the '<em>Referred Operation</em>' reference.
* @see #setReferredOperation(Operation)
* @see org.eclipse.qvtd.pivot.qvtschedule.QVTschedulePackage#getOperationCallNode_ReferredOperation()
* @model transient="true"
* @generated
*/
Operation getReferredOperation();
/**
* Sets the value of the '{@link org.eclipse.qvtd.pivot.qvtschedule.OperationCallNode#getReferredOperation <em>Referred Operation</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Referred Operation</em>' reference.
* @see #getReferredOperation()
* @generated
*/
void setReferredOperation(Operation value);
} // OperationCallNode