| org.eclipse.ui.actions.SelectionListenerAction org.eclipse.ui.actions.CopyProjectAction org.eclipse.ui.actions.MoveProjectAction
MoveProjectAction | public class MoveProjectAction extends CopyProjectAction (Code) | | The MoveProjectAction is the action designed to move projects specifically as
they have different semantics from other resources.
|
Field Summary | |
final public static String | ID The id of this action. |
Constructor Summary | |
public | MoveProjectAction(Shell shell) Creates a new project move action with the given text. |
Method Summary | |
protected String | getErrorsTitle() Return the title of the errors dialog. | boolean | performMove(IProject project, URI newLocation) Moves the project to the new values. | protected Object[] | queryDestinationParameters(IProject project) Query for a new project destination using the parameters in the existing
project. | public void | run() Implementation of method defined on IAction . |
ID | final public static String ID(Code) | | The id of this action.
|
MoveProjectAction | public MoveProjectAction(Shell shell)(Code) | | Creates a new project move action with the given text.
Parameters: shell - the shell for any dialogs |
getErrorsTitle | protected String getErrorsTitle()(Code) | | Return the title of the errors dialog.
java.lang.String |
performMove | boolean performMove(IProject project, URI newLocation)(Code) | | Moves the project to the new values.
Parameters: project - the project to move Parameters: newLocation - URI true if the copy operation completed, andfalse if it was abandoned part way |
queryDestinationParameters | protected Object[] queryDestinationParameters(IProject project)(Code) | | Query for a new project destination using the parameters in the existing
project.
Object[] or null if the selection is cancelled Parameters: project - the project we are going to move. |
run | public void run()(Code) | | Implementation of method defined on IAction .
|
|
|