]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics/src/org/simantics/internal/AutosavePreferenceInitializer.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics / src / org / simantics / internal / AutosavePreferenceInitializer.java
1 /*******************************************************************************\r
2  * Copyright (c) 2012 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  *     Semantum Oy - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.internal;\r
13 \r
14 import org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer;\r
15 import org.eclipse.core.runtime.preferences.DefaultScope;\r
16 import org.eclipse.core.runtime.preferences.IScopeContext;\r
17 import org.osgi.service.prefs.Preferences;\r
18 import org.simantics.AutosavePreferences;\r
19 \r
20 /**\r
21  * @author Tuukka Lehtonen <tuukka.lehtonen@semantum.fi>\r
22  */\r
23 public class AutosavePreferenceInitializer extends AbstractPreferenceInitializer {\r
24 \r
25     public void initializeDefaultPreferences() {\r
26         IScopeContext context = DefaultScope.INSTANCE;\r
27         Preferences node = context.getNode(AutosavePreferences.P_NODE);\r
28         node.putBoolean(AutosavePreferences.P_VG_AUTOSAVE_ENABLED, AutosavePreferences.DEFAULT_VG_AUTOSAVE_ENABLED);\r
29         node.putInt(AutosavePreferences.P_VG_AUTOSAVE_INTERVAL, AutosavePreferences.DEFAULT_VG_AUTOSAVE_INTERVAL);\r
30     }\r
31 \r
32 }\r