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