blob: b66ebd83a62f7ec29aa3e9c7ecfc715ef70ea04c [file] [log] [blame]
/*
* Copyright (c) 2005, 2015 IBM Corporation, CEA, and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM - initial API and implementation
* Christian W. Damus (CEA) - 251963
* Kenn Hussey (CEA) - 418466, 451350
*
*/
package org.eclipse.uml2.uml;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Call Event</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A CallEvent models the receipt by an object of a message invoking a call of an Operation.
* <p>From package UML::CommonBehavior.</p>
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.uml2.uml.CallEvent#getOperation <em>Operation</em>}</li>
* </ul>
*
* @see org.eclipse.uml2.uml.UMLPackage#getCallEvent()
* @model
* @generated
*/
public interface CallEvent
extends MessageEvent {
/**
* Returns the value of the '<em><b>Operation</b></em>' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Designates the Operation whose invocation raised the CalEvent.
* <p>From package UML::CommonBehavior.</p>
* <!-- end-model-doc -->
* @return the value of the '<em>Operation</em>' reference.
* @see #setOperation(Operation)
* @see org.eclipse.uml2.uml.UMLPackage#getCallEvent_Operation()
* @model required="true" ordered="false"
* @generated
*/
Operation getOperation();
/**
* Sets the value of the '{@link org.eclipse.uml2.uml.CallEvent#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(Operation value);
} // CallEvent