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 / NopTextEdit.java
index 083fe0b..1994ef2 100644 (file)
@@ -7,54 +7,61 @@ package net.sourceforge.phpdt.internal.corext.textmanipulation;
 import org.eclipse.core.runtime.CoreException;
 
 /**
- * A text edit that does nothing. A <code>NopTextEdit</code> can be used to track
- * positions when executing <code>TextEdits</code> associated with a <code>
+ * A text edit that does nothing. A <code>NopTextEdit</code> can be used to
+ * track positions when executing <code>TextEdits</code> associated with a
+ * <code>
  * TextBufferEditor</code>.
  */
 public class NopTextEdit extends TextEdit {
-       
+
        private TextRange fTextRange;
-       
+
        /**
-        * Creates a new <code>NopTextEdit</code> for the given
-        * offset and length.
+        * Creates a new <code>NopTextEdit</code> for the given offset and length.
         * 
-        * @param offset the starting offset this text edit is "working on"
-        * @param length the length this text edit is "working on"
+        * @param offset
+        *            the starting offset this text edit is "working on"
+        * @param length
+        *            the length this text edit is "working on"
         */
        public NopTextEdit(int offset, int length) {
                this(new TextRange(offset, length));
        }
-       
+
        /**
-        * Creates a new <code>NopTextEdit</code> for the given
-        * range.
+        * Creates a new <code>NopTextEdit</code> for the given range.
         * 
-        * @param range the <code>TextRange</code> this text edit is "working on"
+        * @param range
+        *            the <code>TextRange</code> this text edit is "working on"
         */
        public NopTextEdit(TextRange range) {
-               fTextRange= range;
+               fTextRange = range;
        }
 
-       /* non Java-doc
+       /*
+        * non Java-doc
+        * 
         * @see TextEdit#getTextRange
-        */     
+        */
        public TextRange getTextRange() {
                return fTextRange;
        }
 
-       /* non Java-doc
+       /*
+        * non Java-doc
+        * 
         * @see TextEdit#perform
-        */     
+        */
        public TextEdit perform(TextBuffer buffer) throws CoreException {
                return new NopTextEdit(fTextRange);
        }
-       
-       /* non Java-doc
+
+       /*
+        * non Java-doc
+        * 
         * @see TextEdit#perform
-        */     
+        */
        public TextEdit copy() {
                return new NopTextEdit(fTextRange.copy());
-       }       
+       }
 }
-