A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / core / ISourceRange.java
index 46ab0f6..302e6da 100644 (file)
 package net.sourceforge.phpdt.core;
 
 /**
- * A source range defines an element's source coordinates relative to
- * its source buffer.
+ * A source range defines an element's source coordinates relative to its source
+ * buffer.
  * <p>
  * This interface is not intended to be implemented by clients.
  * </p>
  */
 public interface ISourceRange {
 
-/**
- * Returns the number of characters of the source code for this element,
- * relative to the source buffer in which this element is contained.
- * 
- * @return the number of characters of the source code for this element,
- * relative to the source buffer in which this element is contained
- */
-int getLength();
-/**
- * Returns the 0-based index of the first character of the source code for this element,
- * relative to the source buffer in which this element is contained.
- * 
- * @return the 0-based index of the first character of the source code for this element,
- * relative to the source buffer in which this element is contained
- */
-int getOffset();
+       /**
+        * Returns the number of characters of the source code for this element,
+        * relative to the source buffer in which this element is contained.
+        * 
+        * @return the number of characters of the source code for this element,
+        *         relative to the source buffer in which this element is contained
+        */
+       int getLength();
+
+       /**
+        * Returns the 0-based index of the first character of the source code for
+        * this element, relative to the source buffer in which this element is
+        * contained.
+        * 
+        * @return the 0-based index of the first character of the source code for
+        *         this element, relative to the source buffer in which this element
+        *         is contained
+        */
+       int getOffset();
 }