blob: 648955569b1623d1fe2f2412b387c3517ab53453 [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.interfaces.Semantics.StateMachines;
public enum TransitionMetadata {
// NONE: The transition exists, however its source state was is not yet reached
NONE,
// REACHED: The source vertex of the transition is reached
REACHED,
// TRAVERSED: The transition was executed
TRAVERSED
}