]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.workbench/src/org/simantics/workbench/internal/preferences/SimanticsPreferenceInitializer.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.workbench / src / org / simantics / workbench / internal / preferences / SimanticsPreferenceInitializer.java
index a2bacee626635da9993890dc28bc525d459af9a1..644df301aa0924ad3f435102a18fe3ca142459a5 100644 (file)
@@ -1,47 +1,47 @@
-/*******************************************************************************\r
- * Copyright (c) 2007, 2011 Association for Decentralized Information Management in\r
- * Industry THTH ry.\r
- * All rights reserved. This program and the accompanying materials\r
- * are made available under the terms of the Eclipse Public License v1.0\r
- * which accompanies this distribution, and is available at\r
- * http://www.eclipse.org/legal/epl-v10.html\r
- *\r
- * Contributors:\r
- *     VTT Technical Research Centre of Finland - initial API and implementation\r
- *******************************************************************************/\r
-package org.simantics.workbench.internal.preferences;\r
-\r
-import org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer;\r
-import org.eclipse.core.runtime.preferences.DefaultScope;\r
-import org.eclipse.core.runtime.preferences.IScopeContext;\r
-import org.eclipse.core.runtime.preferences.InstanceScope;\r
-import org.osgi.service.prefs.Preferences;\r
-import org.simantics.workbench.internal.Activator;\r
-\r
-/**\r
- * @author Tuukka Lehtonen\r
- */\r
-public class SimanticsPreferenceInitializer extends AbstractPreferenceInitializer {\r
-\r
-    @Override\r
-    public void initializeDefaultPreferences() {\r
-        IScopeContext defaults = DefaultScope.INSTANCE;\r
-        Preferences node = defaults.getNode(Activator.PLUGIN_ID);\r
-        node.putBoolean(SimanticsPreferences.SHOW_DATABASE_CONTROLS, false);\r
-\r
-        IScopeContext instance = InstanceScope.INSTANCE;\r
-        node = instance.getNode(Activator.PLUGIN_ID);\r
-        boolean show = node.getBoolean(SimanticsPreferences.SHOW_DATABASE_CONTROLS, false);\r
-        if (show)\r
-            System.setProperty(bind(Activator.PLUGIN_ID, SimanticsPreferences.SHOW_DATABASE_CONTROLS), "true");\r
-\r
-        // NOTE: the above system property are used in plugin.xml with\r
-        // systemTest in menu contribution visibility checking.\r
-        // This implementation requires a restart every time the preference is changed.\r
-    }\r
-\r
-    private static String bind(String namespace, String pref) {\r
-        return namespace + "." + pref;\r
-    }\r
-\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2007, 2011 Association for Decentralized Information Management in
+ * Industry THTH ry.
+ * 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:
+ *     VTT Technical Research Centre of Finland - initial API and implementation
+ *******************************************************************************/
+package org.simantics.workbench.internal.preferences;
+
+import org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer;
+import org.eclipse.core.runtime.preferences.DefaultScope;
+import org.eclipse.core.runtime.preferences.IScopeContext;
+import org.eclipse.core.runtime.preferences.InstanceScope;
+import org.osgi.service.prefs.Preferences;
+import org.simantics.workbench.internal.Activator;
+
+/**
+ * @author Tuukka Lehtonen
+ */
+public class SimanticsPreferenceInitializer extends AbstractPreferenceInitializer {
+
+    @Override
+    public void initializeDefaultPreferences() {
+        IScopeContext defaults = DefaultScope.INSTANCE;
+        Preferences node = defaults.getNode(Activator.PLUGIN_ID);
+        node.putBoolean(SimanticsPreferences.SHOW_DATABASE_CONTROLS, false);
+
+        IScopeContext instance = InstanceScope.INSTANCE;
+        node = instance.getNode(Activator.PLUGIN_ID);
+        boolean show = node.getBoolean(SimanticsPreferences.SHOW_DATABASE_CONTROLS, false);
+        if (show)
+            System.setProperty(bind(Activator.PLUGIN_ID, SimanticsPreferences.SHOW_DATABASE_CONTROLS), "true");
+
+        // NOTE: the above system property are used in plugin.xml with
+        // systemTest in menu contribution visibility checking.
+        // This implementation requires a restart every time the preference is changed.
+    }
+
+    private static String bind(String namespace, String pref) {
+        return namespace + "." + pref;
+    }
+
+}