Examples of FrontEndAction


Examples of org.andromda.metafacades.uml.FrontEndAction

     */
    protected Object handleGetInitialView()
    {
        FrontEndView view = null;
        final FrontEndActivityGraph graph = this.getActivityGraph();
        final FrontEndAction action = graph != null ? this.getActivityGraph().getInitialAction() : null;
        final Collection forwards = action != null ? action.getActionForwards() : null;
        if (forwards != null)
        {
            for (final Iterator iterator = forwards.iterator(); iterator.hasNext();)
            {
                final FrontEndForward forward = (FrontEndForward)iterator.next();
View Full Code Here

Examples of org.andromda.metafacades.uml.FrontEndAction

    {
        final List actionParameters = new ArrayList();
        final Collection actions = this.getActions();
        for (final Iterator iterator = actions.iterator(); iterator.hasNext();)
        {
            final FrontEndAction action = (FrontEndAction)iterator.next();
            actionParameters.addAll(action.getParameters());
        }
        return actionParameters;
    }
View Full Code Here

Examples of org.andromda.metafacades.uml.FrontEndAction

    {
        final List actionParameters = new ArrayList();
        final Collection actions = this.getActions();
        for (final Iterator iterator = actions.iterator(); iterator.hasNext();)
        {
            final FrontEndAction action = (FrontEndAction)iterator.next();
            actionParameters.addAll(action.getParameters());
        }
        return actionParameters;
    }
View Full Code Here

Examples of org.andromda.metafacades.uml.FrontEndAction

    protected List handleGetForwards()
    {
        final Map forwards = new LinkedHashMap();
        for (final Iterator iterator = this.getActions().iterator(); iterator.hasNext();)
        {
            final FrontEndAction action = (FrontEndAction)iterator.next();
            if (action != null && !action.isUseCaseStart())
            {
                for (final Iterator forwardIterator = action.getActionForwards().iterator(); forwardIterator.hasNext();)
                {
                    final Object forward = forwardIterator.next();
                    if (forward instanceof JSFForward)
                    {
                        forwards.put(((JSFForward)forward).getName(), forward);
View Full Code Here

Examples of org.andromda.metafacades.uml.FrontEndAction

                {
                    equalParameter = operation.findParameter(equal);
                }
                if (equalParameter == null)
                {
                    final FrontEndAction action = parameter.getAction();
                    if (action != null)
                    {
                        equalParameter = action.findParameter(equal);
                    }
                }
            }
            else if (element instanceof AttributeFacade)
            {
View Full Code Here

Examples of org.andromda.metafacades.uml.FrontEndAction

    protected List handleGetForwards()
    {
        final Map forwards = new LinkedHashMap();
        for (final Iterator iterator = this.getActions().iterator(); iterator.hasNext();)
        {
            final FrontEndAction action = (FrontEndAction)iterator.next();
            for (final Iterator forwardIterator = action.getActionForwards().iterator(); forwardIterator.hasNext();)
            {
                final Object forward = forwardIterator.next();
                if (forward instanceof JSFForward)
                {
                    forwards.put(((ModelElementFacade)forward).getName(), forward);
View Full Code Here

Examples of org.andromda.metafacades.uml.FrontEndAction

     */
    private final Object getInitialTarget()
    {
        Object initialTarget = null;
        final FrontEndActivityGraph graph = this.getActivityGraph();
        final FrontEndAction action = graph != null ? this.getActivityGraph().getInitialAction() : null;
        final Collection forwards = action != null ? action.getActionForwards() : null;
        if (forwards != null && !forwards.isEmpty())
        {
            final FrontEndForward forward = (FrontEndForward)forwards.iterator().next();
            final Object target = forward.getTarget();
            if (target instanceof FrontEndView)
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.