Package org.omg.uml.behavioralelements.activitygraphs

Examples of org.omg.uml.behavioralelements.activitygraphs.ActionState


        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;
            }
        }
View Full Code Here

TOP

Related Classes of org.omg.uml.behavioralelements.activitygraphs.ActionState

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.