1) Moved net.sourceforge.phpeclipse.ui\src\net\sourceforge\phpdt back to net.sourcefo...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / ui / text / ContentAssistPreference.java
index af56b46..c331757 100644 (file)
@@ -41,10 +41,10 @@ public class ContentAssistPreference {
        private final static String PARAMETERS_BACKGROUND = PreferenceConstants.CODEASSIST_PARAMETERS_BACKGROUND;
 
        /** Preference key for content assist completion replacement color */
-       private final static String COMPLETION_REPLACEMENT_FOREGROUND = PreferenceConstants.CODEASSIST_REPLACEMENT_FOREGROUND;
+       //private final static String COMPLETION_REPLACEMENT_FOREGROUND = PreferenceConstants.CODEASSIST_REPLACEMENT_FOREGROUND;
 
        /** Preference key for content assist completion replacement color */
-       private final static String COMPLETION_REPLACEMENT_BACKGROUND = PreferenceConstants.CODEASSIST_REPLACEMENT_BACKGROUND;
+       //private final static String COMPLETION_REPLACEMENT_BACKGROUND = PreferenceConstants.CODEASSIST_REPLACEMENT_BACKGROUND;
 
        /** Preference key for content assist auto insert */
        private final static String AUTOINSERT = PreferenceConstants.CODEASSIST_AUTOINSERT;
@@ -59,7 +59,7 @@ public class ContentAssistPreference {
        private final static String AUTOACTIVATION_TRIGGERS_HTML = PreferenceConstants.CODEASSIST_AUTOACTIVATION_TRIGGERS_HTML;
 
        /** Preference key for visibility of proposals */
-       private final static String SHOW_VISIBLE_PROPOSALS = PreferenceConstants.CODEASSIST_SHOW_VISIBLE_PROPOSALS;
+       //private final static String SHOW_VISIBLE_PROPOSALS = PreferenceConstants.CODEASSIST_SHOW_VISIBLE_PROPOSALS;
 
        /** Preference key for alphabetic ordering of proposals */
        private final static String ORDER_PROPOSALS = PreferenceConstants.CODEASSIST_ORDER_PROPOSALS;
@@ -68,16 +68,16 @@ public class ContentAssistPreference {
        private final static String CASE_SENSITIVITY = PreferenceConstants.CODEASSIST_CASE_SENSITIVITY;
 
        /** Preference key for adding imports on code assist */
-       private final static String ADD_IMPORT = PreferenceConstants.CODEASSIST_ADDIMPORT;
+       //private final static String ADD_IMPORT = PreferenceConstants.CODEASSIST_ADDIMPORT;
 
        /** Preference key for inserting content assist */
-       private static final String INSERT_COMPLETION = PreferenceConstants.CODEASSIST_INSERT_COMPLETION;
+       //private static final String INSERT_COMPLETION = PreferenceConstants.CODEASSIST_INSERT_COMPLETION;
 
        /** Preference key for filling argument names on method completion */
-       private static final String FILL_METHOD_ARGUMENTS = PreferenceConstants.CODEASSIST_FILL_ARGUMENT_NAMES;
+       //private static final String FILL_METHOD_ARGUMENTS = PreferenceConstants.CODEASSIST_FILL_ARGUMENT_NAMES;
 
        /** Preference key for guessing argument names on method completion */
-       private static final String GUESS_METHOD_ARGUMENTS = PreferenceConstants.CODEASSIST_GUESS_METHOD_ARGUMENTS;
+       //private static final String GUESS_METHOD_ARGUMENTS = PreferenceConstants.CODEASSIST_GUESS_METHOD_ARGUMENTS;
 
        private static Color getColor(IPreferenceStore store, String key,
                        IColorManager manager) {
@@ -323,7 +323,7 @@ public class ContentAssistPreference {
                changeHTMLProcessor(assistant, store, p);
        }
 
-       public static boolean fillArgumentsOnMethodCompletion(IPreferenceStore store) {
-               return store.getBoolean(FILL_METHOD_ARGUMENTS);
-       }
+//     public static boolean fillArgumentsOnMethodCompletion(IPreferenceStore store) {
+//             return store.getBoolean(FILL_METHOD_ARGUMENTS);
+//     }
 }