]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.ui/src/org/simantics/ui/workbench/handler/AbstractPreferenceHandler.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.ui / src / org / simantics / ui / workbench / handler / AbstractPreferenceHandler.java
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
3  * in Industry THTH ry.\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.ui.workbench.handler;\r
13 \r
14 import org.eclipse.core.commands.AbstractHandler;\r
15 import org.eclipse.core.runtime.Assert;\r
16 import org.eclipse.jface.preference.IPreferenceStore;\r
17 import org.eclipse.ui.plugin.AbstractUIPlugin;\r
18 \r
19 public abstract class AbstractPreferenceHandler extends AbstractHandler {\r
20 \r
21     private AbstractUIPlugin plugin;\r
22 \r
23     public AbstractPreferenceHandler(AbstractUIPlugin plugin) {\r
24         Assert.isNotNull(plugin);\r
25         this.plugin = plugin;\r
26     }\r
27 \r
28     protected IPreferenceStore getPrefs() {\r
29         return plugin.getPreferenceStore();\r
30     }\r
31 \r
32     protected void savePrefs() {\r
33         plugin.savePluginPreferences();\r
34     }\r
35 \r
36     protected String getPreferenceString(String key) {\r
37         return getPrefs().getString(key);\r
38     }\r
39 \r
40     protected void setPreference(String key, String value) {\r
41         getPrefs().setValue(key, value);\r
42     }\r
43 \r
44 }\r