blob: 59950ad45c0f0cf8db8838c5454918e2abc79a84 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.stem.model.ui.editor.commands;
import org.eclipse.gef.commands.Command;
import org.eclipse.stem.model.metamodel.Model;
import org.eclipse.stem.model.ui.editor.VisualModelReconciler;
import org.eclipse.stem.model.ui.editor.vismodel.CanvasPackage;
import org.eclipse.stem.model.ui.editor.vismodel.ModelElement;
public class ModelCreateCommand extends Command
{
private CanvasPackage canvas;
private ModelElement modelElement;
public ModelCreateCommand(CanvasPackage canvas, Model model) {
this.canvas = canvas;
this.modelElement = VisualModelReconciler.initializeModelElement(model);
}
public ModelCreateCommand(CanvasPackage canvas, ModelElement modelElement)
{
this.canvas = canvas;
this.modelElement = modelElement;
}
/* (non-Javadoc)
* @see org.eclipse.gef.commands.Command#canExecute()
*/
public boolean canExecute() {
return canvas != null && modelElement != null;
}
/* (non-Javadoc)
* @see org.eclipse.gef.commands.Command#execute()
*/
public void execute() {
redo();
}
/* (non-Javadoc)
* @see org.eclipse.gef.commands.Command#redo()
*/
public void redo() {
canvas.getModelElements().add(modelElement);
}
/* (non-Javadoc)
* @see org.eclipse.gef.commands.Command#undo()
*/
public void undo() {
canvas.getModelElements().remove(modelElement);
}
}