A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / corext / phpdoc / PHPDocCharArrayCommentReader.java
index 5a06b54..193e967 100644 (file)
@@ -13,72 +13,75 @@ package net.sourceforge.phpdt.internal.corext.phpdoc;
 import net.sourceforge.phpdt.internal.corext.util.Strings;
 
 /**
- * Reads a phpdoc comment from a phpdoc comment. Skips star-character
- * on begin of line
+ * Reads a phpdoc comment from a phpdoc comment. Skips star-character on begin
+ * of line
  */
 public class PHPDocCharArrayCommentReader extends SingleCharReader {
 
-  private char[] fCharArray;
-  private int fCurrPos;
-  private int fStartPos;
-  private int fEndPos;
+       private char[] fCharArray;
 
-  private boolean fWasNewLine;
+       private int fCurrPos;
+
+       private int fStartPos;
+
+       private int fEndPos;
+
+       private boolean fWasNewLine;
 
        public PHPDocCharArrayCommentReader(char[] buf) {
                this(buf, 0, buf.length);
        }
-       
-  public PHPDocCharArrayCommentReader(char[] buf, int start, int end) {
-    fCharArray = buf;
-               fStartPos= start + 3;
-               fEndPos= end - 2;
 
-    reset();
-  }
+       public PHPDocCharArrayCommentReader(char[] buf, int start, int end) {
+               fCharArray = buf;
+               fStartPos = start + 3;
+               fEndPos = end - 2;
+
+               reset();
+       }
 
-  /**
-   * @see java.io.Reader#read()
-   */
-  public int read() {
-    if (fCurrPos < fEndPos) {
-      char ch;
-      if (fWasNewLine) {
-        do {
-          ch = fCharArray[fCurrPos++];
-        } while (fCurrPos < fEndPos &&Character.isWhitespace(ch));
-        if (ch == '*') {
-          if (fCurrPos < fEndPos) {
-            do {
-              ch = fCharArray[fCurrPos++];
-            } while (ch == '*');
-          } else {
-            return -1;
-          }
-        }
-      } else {
-        ch = fCharArray[fCurrPos++];
-      }
-      fWasNewLine = Strings.isLineDelimiterChar(ch);
+       /**
+        * @see java.io.Reader#read()
+        */
+       public int read() {
+               if (fCurrPos < fEndPos) {
+                       char ch;
+                       if (fWasNewLine) {
+                               do {
+                                       ch = fCharArray[fCurrPos++];
+                               } while (fCurrPos < fEndPos && Character.isWhitespace(ch));
+                               if (ch == '*') {
+                                       if (fCurrPos < fEndPos) {
+                                               do {
+                                                       ch = fCharArray[fCurrPos++];
+                                               } while (ch == '*');
+                                       } else {
+                                               return -1;
+                                       }
+                               }
+                       } else {
+                               ch = fCharArray[fCurrPos++];
+                       }
+                       fWasNewLine = Strings.isLineDelimiterChar(ch);
 
-      return ch;
-    }
-    return -1;
-  }
+                       return ch;
+               }
+               return -1;
+       }
 
-  /**
-   * @see java.io.Reader#close()
-   */
-  public void close() {
-    fCharArray = null;
-  }
+       /**
+        * @see java.io.Reader#close()
+        */
+       public void close() {
+               fCharArray = null;
+       }
 
-  /**
-   * @see java.io.Reader#reset()
-   */
-  public void reset() {
-    fCurrPos = fStartPos;
-    fWasNewLine = true;
-  }
+       /**
+        * @see java.io.Reader#reset()
+        */
+       public void reset() {
+               fCurrPos = fStartPos;
+               fWasNewLine = true;
+       }
 
 }