Skip to content
Snippets Groups Projects
Commit f99e360e authored by Dominique Blouin's avatar Dominique Blouin
Browse files

Issue #69: Create dummy state for disabled elements

parent fa928ca2
No related branches found
No related tags found
No related merge requests found
package avatartranslator;
/**
* Issue #69: Created for component disabling. When a state machine element is located between transitions
* that have guards and actions, we need to keep a node to ensure that these are evaluated / executed in
* the same sequence leading to the same semantics. We create replace the disabled node with this dummy state
* that will have no impact on the generation of other specifications (UPPAAL, C Code, Proverif, etc..).
*
* @author dblouin
*
*/
public class AvatarDummyState extends AvatarState {
public AvatarDummyState( final String name,
final Object _referenceObject ) {
super( name + "_converted_to_dummy_state", _referenceObject );
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment