A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / corext / textmanipulation / SwapTextEdit.java
index eb0d247..02105a0 100644 (file)
@@ -4,7 +4,6 @@
  */
 package net.sourceforge.phpdt.internal.corext.textmanipulation;
 
-
 /**
  * A <code>SwapTextEdit</code> exchanges to text ranges.
  */
@@ -12,14 +11,17 @@ public class SwapTextEdit extends MultiTextEdit {
        /**
         * Create a new <code>SwapTextEdit</code>
         * 
-        * @param offset1 the offset of the first text range
-        * @param length1 the length of the first text range
-        * @param offset2 the offset of the second text range
-        * @param length2 the length of the second text range
+        * @param offset1
+        *            the offset of the first text range
+        * @param length1
+        *            the length of the first text range
+        * @param offset2
+        *            the offset of the second text range
+        * @param length2
+        *            the length of the second text range
         */
        public SwapTextEdit(int offset1, int length1, int offset2, int length2) {
                add(new MoveTextEdit(offset1, length1, offset2));
                add(new MoveTextEdit(offset2, length2, offset1));
        }
 }
-