A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse.ui / src / net / sourceforge / phpeclipse / ui / preferences / PreferenceDescriptor.java
index d8b8610..46bf488 100644 (file)
@@ -8,7 +8,7 @@
  * Contributors:
  *     Igor Malinin - initial contribution
  * 
- * $Id: PreferenceDescriptor.java,v 1.1 2004-09-02 18:26:30 jsurfer Exp $
+ * $Id: PreferenceDescriptor.java,v 1.2 2006-10-21 23:13:54 pombredanne Exp $
  */
 
 package net.sourceforge.phpeclipse.ui.preferences;
@@ -20,17 +20,24 @@ package net.sourceforge.phpeclipse.ui.preferences;
  */
 public final class PreferenceDescriptor {
        public static final Type BOOLEAN = new Type();
-       public static final Type DOUBLE  = new Type();
-       public static final Type FLOAT   = new Type();
-       public static final Type INT     = new Type();
-       public static final Type LONG    = new Type();
-       public static final Type STRING  = new Type();
+
+       public static final Type DOUBLE = new Type();
+
+       public static final Type FLOAT = new Type();
+
+       public static final Type INT = new Type();
+
+       public static final Type LONG = new Type();
+
+       public static final Type STRING = new Type();
 
        public static final class Type {
-               Type() {}
+               Type() {
+               }
        }
 
-       public final Type  type;
+       public final Type type;
+
        public final String key;
 
        public PreferenceDescriptor(Type type, String key) {