A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / NumberLiteral.java
index a80651d..0ce2098 100644 (file)
@@ -12,21 +12,29 @@ package net.sourceforge.phpdt.internal.compiler.ast;
 
 public abstract class NumberLiteral extends Literal {
        char[] source;
-public NumberLiteral(char[] token, int s, int e) {
-       this(s,e) ;
-       source = token ;
-}
-public NumberLiteral(int s, int e) {
-       super (s,e) ;
-}
-public boolean isValidJavaStatement(){
-       //should never be reach, but with a bug in the ast tree....
-       //see comment on the Statement class
-       
-       return false ;}
-public char[] source(){
-       return source;}
-public String toStringExpression(){
-
-       return new String(source);}
+
+       public NumberLiteral(char[] token, int s, int e) {
+               this(s, e);
+               source = token;
+       }
+
+       public NumberLiteral(int s, int e) {
+               super(s, e);
+       }
+
+       public boolean isValidJavaStatement() {
+               // should never be reach, but with a bug in the ast tree....
+               // see comment on the Statement class
+
+               return false;
+       }
+
+       public char[] source() {
+               return source;
+       }
+
+       public String toStringExpression() {
+
+               return new String(source);
+       }
 }