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 / TextRegion.java
index 69919c6..ef008ad 100644 (file)
@@ -4,34 +4,37 @@
  */
 package net.sourceforge.phpdt.internal.corext.textmanipulation;
 
-
 /**
- * A text region describes a certain range in an <code>ITextBuffer</code>. A region is defined by 
- * its offset into the text buffer and its length.
+ * A text region describes a certain range in an <code>ITextBuffer</code>. A
+ * region is defined by its offset into the text buffer and its length.
  * <p>
- * A region is considered a value object. Its offset or length do not change over time. </p>
+ * A region is considered a value object. Its offset or length do not change
+ * over time.
+ * </p>
  * <p>
- * <bf>NOTE:<bf> This class/interface is part of an interim API that is still under development 
- * and expected to change significantly before reaching stability. It is being made available at 
- * this early stage to solicit feedback from pioneering adopters on the understanding that any 
- * code that uses this API will almost certainly be broken (repeatedly) as the API evolves.</p>
+ * <bf>NOTE:<bf> This class/interface is part of an interim API that is still
+ * under development and expected to change significantly before reaching
+ * stability. It is being made available at this early stage to solicit feedback
+ * from pioneering adopters on the understanding that any code that uses this
+ * API will almost certainly be broken (repeatedly) as the API evolves.
+ * </p>
  */
 
 // This class avoids contamination of clients with wrong imports.
-
 public abstract class TextRegion {
-       
+
        /**
         * Returns the offset of the region.
-        *
+        * 
         * @return the offset of the region
         */
        public abstract int getOffset();
+
        /**
         * Returns the length of the region.
-        *
+        * 
         * @return the length of the region
         */
        public abstract int getLength();
-       
+
 }
\ No newline at end of file