blob: 9467c9305fb3518324ff6408ad77f46ca5ff09e1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2018 IBM Corporation, Zeligsoft Inc., 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:
* IBM - Initial API and implementation
* Zeligsoft - Bug 256040
*******************************************************************************/
package org.eclipse.ocl.ecore;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.EOperation;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Call Operation Action</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.ocl.ecore.CallOperationAction#getOperation <em>Operation</em>}</li>
* </ul>
*
* @see org.eclipse.ocl.ecore.EcorePackage#getCallOperationAction()
* @model
* @generated
*/
public interface CallOperationAction
extends EObject {
/**
* Returns the value of the '<em><b>Operation</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Operation</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Operation</em>' reference.
* @see #setOperation(EOperation)
* @see org.eclipse.ocl.ecore.EcorePackage#getCallOperationAction_Operation()
* @model required="true"
* @generated
*/
EOperation getOperation();
/**
* Sets the value of the '{@link org.eclipse.ocl.ecore.CallOperationAction#getOperation <em>Operation</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Operation</em>' reference.
* @see #getOperation()
* @generated
*/
void setOperation(EOperation value);
} // CallOperationAction