A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / core / SourceRange.java
index 9ed1c12..ed6e495 100644 (file)
@@ -15,33 +15,36 @@ import net.sourceforge.phpdt.core.ISourceRange;
 /**
  * @see ISourceRange
  */
-/* package */ class SourceRange implements ISourceRange {
+/* package */class SourceRange implements ISourceRange {
 
-protected int offset, length;
+       protected int offset, length;
 
-protected SourceRange(int offset, int length) {
-       this.offset = offset;
-       this.length = length;
-}
-/**
- * @see ISourceRange
- */
-public int getLength() {
-       return this.length;
-}
-/**
- * @see ISourceRange
- */
-public int getOffset() {
-       return this.offset;
-}
-public String toString() {
-       StringBuffer buffer = new StringBuffer();
-       buffer.append("[offset="); //$NON-NLS-1$
-       buffer.append(this.offset);
-       buffer.append(", length="); //$NON-NLS-1$
-       buffer.append(this.length);
-       buffer.append("]"); //$NON-NLS-1$
-       return buffer.toString();
-}
+       protected SourceRange(int offset, int length) {
+               this.offset = offset;
+               this.length = length;
+       }
+
+       /**
+        * @see ISourceRange
+        */
+       public int getLength() {
+               return this.length;
+       }
+
+       /**
+        * @see ISourceRange
+        */
+       public int getOffset() {
+               return this.offset;
+       }
+
+       public String toString() {
+               StringBuffer buffer = new StringBuffer();
+               buffer.append("[offset="); //$NON-NLS-1$
+               buffer.append(this.offset);
+               buffer.append(", length="); //$NON-NLS-1$
+               buffer.append(this.length);
+               buffer.append("]"); //$NON-NLS-1$
+               return buffer.toString();
+       }
 }