blob: f1fa95fb2bc9c56d30df0ec9d8cae40f2fdd6f21 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2017 CEA LIST 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:
* CEA LIST - Initial API and implementation
*
*****************************************************************************/
package org.eclipse.papyrus.moka.composites.interfaces.Semantics.CompositeStructures.InvocationActions;
import org.eclipse.papyrus.moka.composites.interfaces.Semantics.CompositeStructures.StructuredClasses.ICS_InteractionPoint;
import org.eclipse.papyrus.moka.composites.interfaces.Semantics.CompositeStructures.StructuredClasses.ICS_Reference;
import org.eclipse.papyrus.moka.fuml.Semantics.CommonBehaviors.Communications.IEventOccurrence;
import org.eclipse.uml2.uml.Port;
public interface ICS_EventOccurrence extends IEventOccurrence{
public void setWrappedEventOccurrence(IEventOccurrence eventOccurrence);
public IEventOccurrence getWrappedEventOccurrence();
public void setInteractionPoint(ICS_InteractionPoint interactionPoint);
public ICS_InteractionPoint getInteractionPoint();
public void sendInTo(ICS_Reference target, Port port);
public void sendOutTo(ICS_Reference target, Port port);
}