Package org.omg.uml.behavioralelements.statemachines

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


    /**
     * @see org.andromda.metafacades.uml.EventFacade#getState()
     */
    protected Object handleGetState()
    {
        State eventState = null;

        final Collection allStates = UML14MetafacadeUtils.getModel().getStateMachines().getState().refAllOfType();
        for (final Iterator stateIterator = allStates.iterator(); stateIterator.hasNext() && eventState == null;)
        {
            final State state = (State)stateIterator.next();
            if (state.getDeferrableEvent().contains(metaObject))
            {
                eventState = state;
            }
        }

View Full Code Here

TOP

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

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.