return effectTransition;
}
protected Object handleGetActionState()
{
ActionState entryState = null;
final Collection allActionStates = UML14MetafacadeUtils.getModel().getActivityGraphs().getActionState().refAllOfType();
for (final Iterator iterator = allActionStates.iterator(); iterator.hasNext() && entryState == null;)
{
final ActionState actionState = (ActionState)iterator.next();
if (metaObject.equals(actionState.getEntry()))
{
entryState = actionState;
}
}