All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.uml2.uml.CallEvent Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2005, 2014 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
 *
 */
package org.eclipse.uml2.uml;

/**
 * 
 * A representation of the model object 'Call Event'.
 * 
 *
 * 
 * A CallEvent models the receipt by an object of a message invoking a call of an Operation.
 * 

From package UML::CommonBehavior.

* * *

* The following features are supported: *

    *
  • {@link org.eclipse.uml2.uml.CallEvent#getOperation Operation}
  • *
*

* * @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 CalEvent. *

From package UML::CommonBehavior.

* * @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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy