]> gerrit.simantics Code Review - simantics/3d.git/blob - org.simantics.g3d/src/org/simantics/g3d/preferences/PreferenceInitializer.java
Copyrights
[simantics/3d.git] / org.simantics.g3d / src / org / simantics / g3d / preferences / PreferenceInitializer.java
1 /*******************************************************************************\r
2  * Copyright (c) 2012, 2013 Association for Decentralized Information Management in\r
3  * 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.g3d.preferences;
13
14 import org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer;
15 import org.eclipse.jface.preference.IPreferenceStore;
16
17 import org.simantics.g3d.Activator;
18 import org.simantics.g3d.math.EulerTools.Order;
19
20 /**
21  * Class used to initialize default preference values.
22  */
23 public class PreferenceInitializer extends AbstractPreferenceInitializer {
24
25         /*
26          * (non-Javadoc)
27          * 
28          * @see org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer#initializeDefaultPreferences()
29          */
30         public void initializeDefaultPreferences() {
31                 IPreferenceStore store = Activator.getDefault().getPreferenceStore();
32                 store.setDefault(PreferenceConstants.ORIENTATION_PRESENTATION, "aa");
33                 store.setDefault(PreferenceConstants.EULER_ANGLE_ORDER, Order.YXZ.toString());
34 //              store.setDefault(PreferenceConstants.P_BOOLEAN, true);
35 //              store.setDefault(PreferenceConstants.P_CHOICE, "choice2");
36 //              store.setDefault(PreferenceConstants.P_STRING,"Default value");
37         }
38
39 }