blob: 4fedcbc7bab3e5f6d79c02a8d79e4d1165daf714 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.actions;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.core.resources.IContainer;
import org.eclipse.core.resources.IResource;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.help.WorkbenchHelp;
import org.eclipse.ui.internal.ide.IHelpContextIds;
import org.eclipse.ui.internal.ide.IDEWorkbenchMessages;
/**
* Standard action for moving the currently selected resources elsewhere
* in the workspace. All resources being moved as a group must be siblings.
* <p>
* This class may be instantiated; it is not intended to be subclassed.
* </p>
*/
public class MoveResourceAction extends CopyResourceAction {
/**
* The id of this action.
*/
public static final String ID = PlatformUI.PLUGIN_ID + ".MoveResourceAction"; //$NON-NLS-1$
/**
* Keep a list of destinations so that any required update can be done after the
* move.
*/
protected List destinations;
/**
* Creates a new action.
*
* @param shell the shell for any dialogs
*/
public MoveResourceAction(Shell shell) {
super(shell, IDEWorkbenchMessages.getString("MoveResourceAction.text")); //$NON-NLS-1$
setToolTipText(IDEWorkbenchMessages.getString("MoveResourceAction.toolTip")); //$NON-NLS-1$
setId(MoveResourceAction.ID);
WorkbenchHelp.setHelp(this, IHelpContextIds.MOVE_RESOURCE_ACTION);
}
/* (non-Javadoc)
* Overrides method in CopyResourceAction
*/
protected CopyFilesAndFoldersOperation createOperation() {
return new MoveFilesAndFoldersOperation(getShell());
}
/**
* Returns the destination resources for the resources that have been moved so far.
*
* @return list of destination <code>IResource</code>s
*/
protected List getDestinations() {
return destinations;
}
/* (non-Javadoc)
* Overrides method in CopyResourceAction
*/
protected IResource[] getResources(List resourceList) {
ReadOnlyStateChecker checker = new ReadOnlyStateChecker(
getShell(),
IDEWorkbenchMessages.getString("MoveResourceAction.title"), //$NON-NLS-1$
IDEWorkbenchMessages.getString("MoveResourceAction.checkMoveMessage"));//$NON-NLS-1$
return checker.checkReadOnlyResources(super.getResources(resourceList));
}
/* (non-Javadoc)
* Overrides method in CopyResourceAction
*/
protected void runOperation(IResource[] resources, IContainer destination) {
//Initialize the destinations
destinations = new ArrayList();
IResource[] copiedResources = operation.copyResources(resources, destination);
for (int i = 0; i < copiedResources.length; i++) {
destinations.add(destination.getFullPath().append(copiedResources[i].getName()));
}
}
}