blob: e29cd9f80a70b8c39f6ed41dcc908542f30d6abf [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2006 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.wst.xsd.ui.internal.adt.actions;
import org.eclipse.gef.commands.Command;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.viewers.StructuredSelection;
import org.eclipse.ui.IWorkbenchPart;
import org.eclipse.wst.xsd.ui.internal.adt.editor.Messages;
import org.eclipse.wst.xsd.ui.internal.adt.facade.IComplexType;
import org.eclipse.wst.xsd.ui.internal.adt.facade.IField;
import org.eclipse.wst.xsd.ui.internal.adt.facade.IModel;
import org.eclipse.wst.xsd.ui.internal.editor.XSDEditorPlugin;
public class DeleteAction extends BaseSelectionAction
{
public final static String ID = "org.eclipse.wst.xsd.ui.internal.editor.DeleteAction"; //$NON-NLS-1$
public DeleteAction(IWorkbenchPart part)
{
super(part);
setText(Messages._UI_ACTION_DELETE);
setId(ID);
setImageDescriptor(XSDEditorPlugin.getImageDescriptor("icons/delete_obj.gif") ); //$NON-NLS-1$
}
public void run()
{
Object selection = ((IStructuredSelection) getSelection()).getFirstElement();
Command command = null;
boolean doReselect = false;
IModel model = null;
if (selection instanceof IComplexType)
{
command = ((IComplexType)selection).getDeleteCommand();
model = ((IComplexType)selection).getModel();
doReselect = true;
}
else if (selection instanceof IField)
{
model = ((IField)selection).getModel();
if ( ((IField)selection).isGlobal())
{
doReselect = true;
}
command = ((IField)selection).getDeleteCommand();
}
if (command != null)
{
command.execute();
if (model != null && doReselect)
provider.setSelection(new StructuredSelection(model));
}
}
}