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 / SingleCharReader.java
index 6bd996e..858cc75 100644 (file)
  *******************************************************************************/
 package net.sourceforge.phpdt.internal.corext.phpdoc;
 
-
 import java.io.IOException;
 import java.io.Reader;
 
 public abstract class SingleCharReader extends Reader {
-       
+
        /**
         * @see Reader#read()
         */
@@ -25,9 +24,9 @@ public abstract class SingleCharReader extends Reader {
         * @see Reader#read(char[],int,int)
         */
        public int read(char cbuf[], int off, int len) throws IOException {
-               int end= off + len;
-               for (int i= off; i < end; i++) {
-                       int ch= read();
+               int end = off + len;
+               for (int i = off; i < end; i++) {
+                       int ch = read();
                        if (ch == -1) {
                                if (i == off) {
                                        return -1;
@@ -35,30 +34,30 @@ public abstract class SingleCharReader extends Reader {
                                        return i - off;
                                }
                        }
-                       cbuf[i]= (char)ch;
+                       cbuf[i] = (char) ch;
                }
                return len;
-       }               
-       
+       }
+
        /**
         * @see Reader#ready()
-        */             
-    public boolean ready() throws IOException {
+        */
+       public boolean ready() throws IOException {
                return true;
        }
-       
+
        /**
         * Gets the content as a String
         */
        public String getString() throws IOException {
-               StringBuffer buf= new StringBuffer();
+               StringBuffer buf = new StringBuffer();
                int ch;
-               while ((ch= read()) != -1) {
-                   if (ch=='\n'||ch=='\r') {
-                     buf.append("<br>");
-                   } else {
-                         buf.append((char)ch);
-                   }
+               while ((ch = read()) != -1) {
+                       if (ch == '\n' || ch == '\r') {
+                               buf.append("<br>");
+                       } else {
+                               buf.append((char) ch);
+                       }
                }
                return buf.toString();
        }