Package org.omg.uml.behavioralelements.statemachines

Examples of org.omg.uml.behavioralelements.statemachines.FinalState


        {
            String useCaseName = useCase.getName();
            Collection allFinalStates = getModel().getStateMachines().getFinalState().refAllOfType();
            for (final Iterator iterator = allFinalStates.iterator(); iterator.hasNext();)
            {
                FinalState finalState = (FinalState)iterator.next();
                if (useCaseName != null)
                {
                    if (useCaseName.equals(finalState.getName()))
                    {
                        finalStates.add(finalState);
                    }
                    else
                    {
View Full Code Here

TOP

Related Classes of org.omg.uml.behavioralelements.statemachines.FinalState

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.