blob: 980dd6ff807cd0097e7346501b69d26cfac8d61a [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:
* Jeremie Tatibouet (CEA LIST)
*
*****************************************************************************/
package org.eclipse.papyrus.moka.fuml.statemachines.Semantics.StateMachines;
import org.eclipse.papyrus.moka.fuml.Semantics.CommonBehaviors.Communications.IEventOccurrence;
public class InternalTransitionActivation extends TransitionActivation{
@Override
public void exitSource(IEventOccurrence eventOccurrence) {
// An internal transition does not cause exit of the source state
return;
}
public void enterTarget(IEventOccurrence eventOccurrence) {
// An internal transition does not cause entry of the target state
return;
}
}