Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 77c142ecd05d3130784b3d64827114cf467ac20c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*******************************************************************************
 * Copyright (c) 2010, 2014 IBM Corporation and others.
 * 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:
 *     IBM Corporation - initial API and implementation
 ******************************************************************************/

package org.eclipse.e4.ui.progress.internal;

import java.util.Map;

import javax.inject.Inject;

import org.eclipse.e4.ui.model.application.MApplication;


public class Preferences {
	
	private static Map<String, String> preferences;
	
	@Inject
	private static synchronized void updatePreferences(MApplication application) {
		preferences = application.getPersistedState();
	}

	public static synchronized boolean getBoolean(String key) {
		return Boolean.parseBoolean(preferences.get(key));
    }

	public static synchronized void set(String key, boolean value) {
		preferences.put(key, Boolean.toString(value));
    }

	public static synchronized void set(String key, String value) {
	    preferences.put(key, value);
    }

}

Back to the top