/******************************************************************************* * 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.model.IDecisionState; import org.springframework.ide.eclipse.webflow.core.model.IIf; /** * @author Christian Dupuis */ public class AddIfCommand extends Command { /** * */ private IIf child; /** * */ private IDecisionState parent; /* (non-Javadoc) * @see org.eclipse.gef.commands.Command#execute() */ public void execute() { parent.addIf(child); } /** * * * @return */ public IDecisionState getParent() { return parent; } /** * * * @param newChild */ public void setChild(IIf newChild) { child = newChild; } /** * * * @param newParent */ public void setParent(IDecisionState newParent) { parent = newParent; } /* (non-Javadoc) * @see org.eclipse.gef.commands.Command#undo() */ public void undo() { if (child.getThenTransition() != null) { child.getThenTransition().getToState().removeInputTransition( child.getThenTransition()); } if (child.getElseTransition() != null) { child.getElseTransition().getToState().removeInputTransition( child.getElseTransition()); } parent.removeIf(child); } }