1 11 package org.eclipse.jface.preference; 12 13 18 public final class JFacePreferences { 19 20 23 public static final String ERROR_COLOR = "ERROR_COLOR"; 25 28 public static final String HYPERLINK_COLOR = "HYPERLINK_COLOR"; 30 33 public static final String ACTIVE_HYPERLINK_COLOR = "ACTIVE_HYPERLINK_COLOR"; 35 private static IPreferenceStore preferenceStore; 36 37 40 private JFacePreferences() { 41 } 42 43 47 public static IPreferenceStore getPreferenceStore() { 48 return preferenceStore; 49 } 50 51 55 public static void setPreferenceStore(IPreferenceStore store) { 56 preferenceStore = store; 57 } 58 59 } 60 | Popular Tags |