1 package net.sourceforge.phpeclipse.ui;
3 import org.eclipse.jface.preference.IPreferenceStore;
5 public class PreferenceConstants {
7 * A named preference that holds the characters that auto activate code
10 * Value is of type <code>Sring</code>. All characters that trigger auto
11 * code assist in XML/HTML.
14 public final static String CODEASSIST_AUTOACTIVATION_TRIGGERS_HTML = "content_assist_autoactivation_triggers_html"; //$NON-NLS-1$
17 * A named preference that defines if code assist proposals are sorted in
20 * Value is of type <code>Boolean</code>. If <code>true</code> that are
21 * sorted in alphabetical order. If <code>false</code> that are unsorted.
24 public final static String CODEASSIST_ORDER_PROPOSALS = "content_assist_order_proposals"; //$NON-NLS-1$
26 public static void initializeDefaultValues(IPreferenceStore store) {
28 PreferenceConstants.CODEASSIST_AUTOACTIVATION_TRIGGERS_HTML,
30 store.setDefault(PreferenceConstants.CODEASSIST_ORDER_PROPOSALS, false);