/******************************************************************************* * Copyright (c) 2007 Spring IDE Developers * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Spring IDE Developers - initial API and implementation *******************************************************************************/ package org.springframework.ide.eclipse.webflow.ui.graph.commands; import org.eclipse.gef.commands.Command; import org.springframework.ide.eclipse.webflow.core.internal.model.EntryActions; import org.springframework.ide.eclipse.webflow.core.internal.model.ExitActions; import org.springframework.ide.eclipse.webflow.core.internal.model.RenderActions; import org.springframework.ide.eclipse.webflow.core.model.IActionElement; import org.springframework.ide.eclipse.webflow.core.model.IActionState; import org.springframework.ide.eclipse.webflow.core.model.IEntryActions; import org.springframework.ide.eclipse.webflow.core.model.IExitActions; import org.springframework.ide.eclipse.webflow.core.model.IRenderActions; import org.springframework.ide.eclipse.webflow.core.model.IState; import org.springframework.ide.eclipse.webflow.core.model.IViewState; import org.springframework.ide.eclipse.webflow.core.model.IWebflowModelElement; /** * @author Christian Dupuis */ public class AddActionCommand extends Command { /** * */ private IActionElement child; /** * */ private IWebflowModelElement parent; /* (non-Javadoc) * @see org.eclipse.gef.commands.Command#execute() */ public void execute() { if (child.getType() == IActionElement.ACTION_TYPE.ACTION && parent instanceof IActionState) { child.setElementParent(parent); } else if (child.getType() == IActionElement.ACTION_TYPE.RENDER_ACTION && parent instanceof IViewState) { IViewState state = (IViewState) parent; if (state.getRenderActions() == null) { RenderActions entry = new RenderActions(); entry.createNew(state); state.setRenderActions(entry); } child.setElementParent(state.getRenderActions()); } else if (child.getType() == IActionElement.ACTION_TYPE.ENTRY_ACTION && parent instanceof IState) { IState state = (IState) parent; if (state.getEntryActions() == null) { EntryActions entry = new EntryActions(); entry.createNew(state); state.setEntryActions(entry); } child.setElementParent(state.getEntryActions()); } else if (child.getType() == IActionElement.ACTION_TYPE.EXIT_ACTION && parent instanceof IState) { IState state = (IState) parent; if (state.getExitActions() == null) { ExitActions entry = new ExitActions(); entry.createNew(state); state.setExitActions(entry); } child.setElementParent(state.getExitActions()); } if (child.getElementParent() instanceof IEntryActions) { ((IEntryActions) child.getElementParent()).addEntryAction(child); } else if (child.getElementParent() instanceof IExitActions) { ((IExitActions) child.getElementParent()).addExitAction(child); } else if (child.getElementParent() instanceof IRenderActions) { ((IRenderActions) child.getElementParent()).addRenderAction(child); } else if (child.getElementParent() instanceof IActionState) { ((IActionState) child.getElementParent()).addAction(child); } } /** * * * @param newChild */ public void setChild(IActionElement newChild) { child = newChild; } /* (non-Javadoc) * @see org.eclipse.gef.commands.Command#undo() */ public void undo() { if (child.getElementParent() instanceof IEntryActions) { ((IEntryActions) child.getElementParent()).removeEntryAction(child); } else if (child.getElementParent() instanceof IExitActions) { ((IExitActions) child.getElementParent()).removeExitAction(child); } else if (child.getElementParent() instanceof IRenderActions) { ((IRenderActions) child.getElementParent()).removeRenderAction(child); } else if (child.getElementParent() instanceof IActionState) { ((IActionState) child.getElementParent()).removeAction(child); } if (child.getType() == IActionElement.ACTION_TYPE.RENDER_ACTION && child.getElementParent() instanceof IRenderActions) { IRenderActions state = (IRenderActions) child.getElementParent(); if (state != null && state.getRenderActions().size() == 0) { ((IViewState) state.getElementParent()).setRenderActions(null); } } else if (child.getType() == IActionElement.ACTION_TYPE.ENTRY_ACTION && child.getElementParent() instanceof IEntryActions) { IEntryActions state = (IEntryActions) child.getElementParent(); if (state != null && state.getEntryActions().size() == 0) { ((IState) state.getElementParent()).setEntryActions(null); } } else if (child.getType() == IActionElement.ACTION_TYPE.EXIT_ACTION && child.getElementParent() instanceof IExitActions) { IExitActions state = (IExitActions) child.getElementParent(); if (state != null && state.getExitActions().size() == 0) { ((IState) state.getElementParent()).setExitActions(null); } } } /** * * * @param element */ public void setParent(IWebflowModelElement element) { this.parent = element; } }