blob: 0c16bf37237f36dcbe90aa4fdc3f49a4cb17c30c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 Obeo.
* 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:
* Obeo - initial API and implementation
*******************************************************************************/
package org.eclipse.sirius.diagram.ui.business.internal.command;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.emf.ecore.util.EcoreUtil;
import org.eclipse.emf.transaction.TransactionalEditingDomain;
import org.eclipse.gmf.runtime.common.core.command.CommandResult;
import org.eclipse.gmf.runtime.diagram.core.commands.DeleteCommand;
import org.eclipse.gmf.runtime.notation.View;
/**
* Extends the GMF {@link DeleteCommand} to avoid creating
* {@link org.eclipse.gmf.runtime.emf.core.util.CrossReferenceAdapter}.
*
* @author <a href="mailto:mickael.lanoe@obeo.fr">Mickael LANOE</a>
*
*/
public class ViewDeleteCommand extends DeleteCommand {
/**
* Creates a new Delete command.
*
* @param editingDomain
* the editing domain through which model changes are made
* @param view
* view to delete
*/
public ViewDeleteCommand(TransactionalEditingDomain editingDomain, View view) {
super(editingDomain, view);
}
/**
* Creates a new Delete command.
*
* @param view
* view to delete
*/
public ViewDeleteCommand(View view) {
super(view);
}
@Override
protected CommandResult doExecuteWithResult(IProgressMonitor progressMonitor, IAdaptable info) throws ExecutionException {
// Prevents GMF to install its CrossReferencerAdapter by not calling
// ViewUtil.destroy(View)
EcoreUtil.remove(getView());
return CommandResult.newOKCommandResult();
}
}