A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / core / RenameResourceElementsOperation.java
index 36d01c4..663c6a4 100644 (file)
@@ -18,51 +18,58 @@ import net.sourceforge.phpdt.internal.core.util.Util;
 
 /**
  * This operation renames resources (Package fragments and compilation units).
- *
- * <p>Notes:<ul>
- * <li>When a compilation unit is renamed, its main type and the constructors of the 
- *             main type are renamed.
+ * 
+ * <p>
+ * Notes:
+ * <ul>
+ * <li>When a compilation unit is renamed, its main type and the constructors
+ * of the main type are renamed.
  * </ul>
  */
-public class RenameResourceElementsOperation extends MoveResourceElementsOperation {
-/**
- * When executed, this operation will rename the specified elements with the given names in the
- * corresponding destinations.
- */
-public RenameResourceElementsOperation(IJavaElement[] elements, IJavaElement[] destinations, String[] newNames, boolean force) {
-       //a rename is a move to the same parent with a new name specified
-       //these elements are from different parents
-       super(elements, destinations, force);
-       setRenamings(newNames);
-}
-/**
- * @see MultiOperation
- */
-protected String getMainTaskName() {
-       return Util.bind("operation.renameResourceProgress"); //$NON-NLS-1$
-}
-/**
- * @see CopyResourceElementsOperation#isRename()
- */
-protected boolean isRename() {
-       return true;
-}
-/**
- * @see MultiOperation
- */
-protected void verify(IJavaElement element) throws JavaModelException {
-       super.verify(element);
+public class RenameResourceElementsOperation extends
+               MoveResourceElementsOperation {
+       /**
+        * When executed, this operation will rename the specified elements with the
+        * given names in the corresponding destinations.
+        */
+       public RenameResourceElementsOperation(IJavaElement[] elements,
+                       IJavaElement[] destinations, String[] newNames, boolean force) {
+               // a rename is a move to the same parent with a new name specified
+               // these elements are from different parents
+               super(elements, destinations, force);
+               setRenamings(newNames);
+       }
+
+       /**
+        * @see MultiOperation
+        */
+       protected String getMainTaskName() {
+               return Util.bind("operation.renameResourceProgress"); //$NON-NLS-1$
+       }
 
-       int elementType = element.getElementType();
-       
-       if (!(elementType == IJavaElement.COMPILATION_UNIT || elementType == IJavaElement.PACKAGE_FRAGMENT)) {
-               error(IJavaModelStatusConstants.INVALID_ELEMENT_TYPES, element);
+       /**
+        * @see CopyResourceElementsOperation#isRename()
+        */
+       protected boolean isRename() {
+               return true;
        }
-       if (elementType == IJavaElement.COMPILATION_UNIT) {
-               if (((ICompilationUnit) element).isWorkingCopy()) {
+
+       /**
+        * @see MultiOperation
+        */
+       protected void verify(IJavaElement element) throws JavaModelException {
+               super.verify(element);
+
+               int elementType = element.getElementType();
+
+               if (!(elementType == IJavaElement.COMPILATION_UNIT || elementType == IJavaElement.PACKAGE_FRAGMENT)) {
                        error(IJavaModelStatusConstants.INVALID_ELEMENT_TYPES, element);
                }
+               if (elementType == IJavaElement.COMPILATION_UNIT) {
+                       if (((ICompilationUnit) element).isWorkingCopy()) {
+                               error(IJavaModelStatusConstants.INVALID_ELEMENT_TYPES, element);
+                       }
+               }
+               verifyRenaming(element);
        }
-       verifyRenaming(element);
-}
 }