Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.eef.common/src/org/eclipse/eef/common/api/preferences/EEFCommonPreferences.java')
-rw-r--r--plugins/org.eclipse.eef.common/src/org/eclipse/eef/common/api/preferences/EEFCommonPreferences.java68
1 files changed, 68 insertions, 0 deletions
diff --git a/plugins/org.eclipse.eef.common/src/org/eclipse/eef/common/api/preferences/EEFCommonPreferences.java b/plugins/org.eclipse.eef.common/src/org/eclipse/eef/common/api/preferences/EEFCommonPreferences.java
new file mode 100644
index 000000000..f3d3a911e
--- /dev/null
+++ b/plugins/org.eclipse.eef.common/src/org/eclipse/eef/common/api/preferences/EEFCommonPreferences.java
@@ -0,0 +1,68 @@
+/*******************************************************************************
+ * Copyright (c) 2016 Obeo.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Obeo - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.eef.common.api.preferences;
+
+import org.eclipse.core.runtime.preferences.IEclipsePreferences;
+import org.eclipse.core.runtime.preferences.InstanceScope;
+import org.eclipse.eef.common.internal.EEFCommonPlugin;
+import org.eclipse.eef.common.internal.preferences.IEEFPreferenceConstants;
+import org.osgi.service.prefs.BackingStoreException;
+
+/**
+ * The preferences of the bundle EEF Common.
+ *
+ * @author sbegaudeau
+ */
+public final class EEFCommonPreferences {
+
+ /**
+ * The EEF Common preference scope.
+ */
+ private static final IEclipsePreferences PREFERENCES_SCOPE = InstanceScope.INSTANCE.getNode(EEFCommonPlugin.PLUGIN_ID);
+
+ /**
+ * The constructor.
+ */
+ private EEFCommonPreferences() {
+ // prevent instantiation
+ }
+
+ /**
+ * Indicates if the debug mode is enabled.
+ *
+ * @return <code>true</code> if it is enabled, <code>false</code> otherwise
+ */
+ public static boolean isDebugEnabled() {
+ return PREFERENCES_SCOPE.getBoolean(IEEFPreferenceConstants.DEBUG, false);
+ }
+
+ /**
+ * Sets the state of the debug mode.
+ *
+ * @param isEnabled
+ * <code>true</code> to activate the debug mode, <code>false</code> to deactivate it
+ */
+ public static void setDebug(boolean isEnabled) {
+ PREFERENCES_SCOPE.putBoolean(IEEFPreferenceConstants.DEBUG, isEnabled);
+ save();
+ }
+
+ /**
+ * Save the modification of the preference store.
+ */
+ private static void save() {
+ try {
+ PREFERENCES_SCOPE.flush();
+ } catch (BackingStoreException e) {
+ EEFCommonPlugin.getPlugin().error(e.getMessage(), e);
+ }
+ }
+}

Back to the top