blob: 258fde9f130276cb1ede091ed7ada96e0669eec5 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2016 CEA LIST.
*
* 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.fuml.Semantics.CommonBehaviors.Communications;
import java.util.List;
import org.eclipse.papyrus.moka.fuml.Semantics.Classes.Kernel.IReference;
import org.eclipse.papyrus.moka.fuml.Semantics.CommonBehaviors.BasicBehaviors.IParameterValue;
import org.eclipse.uml2.uml.Trigger;
public interface IEventOccurrence {
public boolean match(Trigger trigger);
public boolean matchAny(List<Trigger> triggers);
public abstract List<IParameterValue> getParameterValues();
public void sendTo(IReference target);
public void doSend();
public void _startObjectBehavior();
public void setTarget(IReference target);
public IReference getTarget();
}