1 /*******************************************************************************
2 * Copyright (c) 2000, 2003 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Common Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/cpl-v10.html
9 * IBM Corporation - initial API and implementation
10 *******************************************************************************/
11 package net.sourceforge.phpdt.internal.core;
13 import net.sourceforge.phpdt.core.IJavaElement;
16 * This operation moves elements from their current
17 * container to a specified destination container, optionally renaming the
19 * A move operation is equivalent to a copy operation, where
20 * the source elements are deleted after the copy.
21 * <p>This operation can be used for reorganizing elements within the same container.
23 * @see CopyElementsOperation
25 public class MoveElementsOperation extends CopyElementsOperation {
27 * When executed, this operation will move the given elements to the given containers.
29 public MoveElementsOperation(IJavaElement[] elementsToMove, IJavaElement[] destContainers, boolean force) {
30 super(elementsToMove, destContainers, force);
33 * Returns the <code>String</code> to use as the main task name
34 * for progress monitoring.
36 protected String getMainTaskName() {
37 return Util.bind("operation.moveElementProgress"); //$NON-NLS-1$
40 * @see CopyElementsOperation#isMove()
42 protected boolean isMove() {