blob: 5a28c06a1c32d305664a59a1dda519c918402bd4 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2016 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.fuml.Semantics.Activities.CompleteStructuredActivities;
import java.util.List;
import org.eclipse.papyrus.moka.fuml.Semantics.Classes.Kernel.IBooleanValue;
public interface IClauseActivation {
public void receiveControl();
public Boolean isReady();
public void runTest();
public void selectBody();
public IBooleanValue getDecision();
public List<IClauseActivation> getPredecessors();
public List<IClauseActivation> getSuccessors();
}