A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / corext / codemanipulation / CodeGenerationSettings.java
index 62883f6..8206056 100644 (file)
 package net.sourceforge.phpdt.internal.corext.codemanipulation;
 
 public class CodeGenerationSettings {
-       
+
        /**
         * @deprecated
         */
-       public boolean createFileComments= true;
+       public boolean createFileComments = true;
+
+       public boolean createComments = true;
+
+       public boolean useKeywordThis = false;
 
-       public boolean createComments= true;
-       
-       public boolean useKeywordThis= false;
-       
        /**
         * @deprecated
         */
-       public boolean createNonJavadocComments= true;
-       
-//     public String[] importOrder= new String[0];
-       public int importThreshold= 99;
-               
+       public boolean createNonJavadocComments = true;
+
+       // public String[] importOrder= new String[0];
+       public int importThreshold = 99;
+
        public int tabWidth;
-       
+
        public void setSettings(CodeGenerationSettings settings) {
-               settings.createComments= createComments;
-               settings.useKeywordThis= useKeywordThis;
-//             settings.importOrder= importOrder;
-               settings.importThreshold= importThreshold;
-               settings.tabWidth= tabWidth;
+               settings.createComments = createComments;
+               settings.useKeywordThis = useKeywordThis;
+               // settings.importOrder= importOrder;
+               settings.importThreshold = importThreshold;
+               settings.tabWidth = tabWidth;
        }
-       
 
 }
-