/* * Copyright (c) 2005, 2006 IBM Corporation 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 * * $Id: CallEvent.java,v 1.2 2006/05/12 20:38:06 khussey Exp $ */ package org.eclipse.uml2.uml; /** * * A representation of the model object 'Call Event'. * * * * A call event models the receipt by an object of a message invoking a call of an operation. * * *

* The following features are supported: *

*

* * @see org.eclipse.uml2.uml.UMLPackage#getCallEvent() * @model * @generated */ public interface CallEvent extends MessageEvent { /** * Returns the value of the 'Operation' reference. * * * * Designates the operation whose invocation raised the call event. * * @return the value of the 'Operation' 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 Operation}' reference. * * * @param value the new value of the 'Operation' reference. * @see #getOperation() * @generated */ void setOperation(Operation value); } // CallEvent