Update internal packages export in LTTng 2.0 control + update java doc
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.ui / src / org / eclipse / linuxtools / internal / lttng2 / ui / views / control / preferences / ControlPreferenceInitializer.java
CommitLineData
afe13e7a
BH
1/**********************************************************************
2 * Copyright (c) 2012 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Bernd Hufmann - Initial API and implementation
11 **********************************************************************/
12package org.eclipse.linuxtools.internal.lttng2.ui.views.control.preferences;
13
14import org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer;
15import org.eclipse.jface.preference.IPreferenceStore;
afe13e7a
BH
16
17/**
afe13e7a
BH
18 * <p>
19 * A class to initialize the preferences.
20 * </p>
dbd4432d
BH
21 *
22 * @author Bernd Hufmann
afe13e7a
BH
23 */
24public class ControlPreferenceInitializer extends AbstractPreferenceInitializer {
25 /*
26 * (non-Javadoc)
27 * @see org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer#initializeDefaultPreferences()
28 */
29 @Override
30 public void initializeDefaultPreferences() {
9315aeee
BH
31 final IPreferenceStore store = ControlPreferences.getInstance().getPreferenceStore();
32
afe13e7a
BH
33 //Set default User ID if none already stored in preferences
34 store.setDefault(ControlPreferences.TRACE_CONTROL_TRACING_GROUP_PREF, ControlPreferences.TRACE_CONTROL_DEFAULT_TRACING_GROUP);
35 store.setDefault(ControlPreferences.TRACE_CONTROL_LOG_APPEND_PREF, false);
36 store.setDefault(ControlPreferences.TRACE_CONTROL_LOG_FILE_PATH_PREF, ControlPreferences.TRACE_CONTROL_DEFAULT_LOG_PATH);
37 store.setDefault(ControlPreferences.TRACE_CONTROL_LOG_COMMANDS_PREF, false);
38 store.setDefault(ControlPreferences.TRACE_CONTROL_VERBOSE_LEVEL_PREF, ControlPreferences.TRACE_CONTROL_VERBOSE_LEVEL_NONE);
39 }
40}
This page took 0.027982 seconds and 5 git commands to generate.