This repository has been archived on 2024-04-22. You can view files and clone it, but cannot push or open issues or pull requests.
SecureUML-GUI/src/ch/ethz/infsec/secureumlgui/securemodel/dialects/metamodel/ActionKind.java

23 lines
343 B
Java

/**
*
*/
package ch.ethz.infsec.secureumlgui.securemodel.dialects.metamodel;
/**
*
*/
public class ActionKind
{
/**
*
*/
private ActionKind()
{
// TODO Auto-generated constructor stub
}
public static ActionKind ATOMIC = new ActionKind();
public static ActionKind COMPOSITE= new ActionKind();
}