blob: 68adc275001135ec6ce1e3627872781bfdf8cc3e [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 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* CEA LIST - Initial API and implementation
*
*****************************************************************************/
package org.eclipse.papyrus.moka.fuml.Semantics.Activities.IntermediateActivities;
import java.util.List;
import org.eclipse.papyrus.moka.fuml.Semantics.Classes.Kernel.IValue;
import org.eclipse.uml2.uml.ValueSpecification;
public interface IDecisionNodeActivation extends IControlNodeActivation {
public List<IValue> getDecisionValues(List<IToken> incomingTokens);
public IValue executeDecisionInputBehavior(IValue inputValue, IValue decisionInputValue);
public IValue getDecisionInputFlowValue();
public IActivityEdgeInstance getDecisionInputFlowInstance();
public Boolean test(ValueSpecification guard, IValue value);
public List<IToken> removeJoinedControlTokens(List<IToken> incomingTokens);
public Boolean hasObjectFlowInput();
}