Add preferences for LTTng 2.0 tracer control
[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;
16import org.eclipse.linuxtools.internal.lttng2.ui.Activator;
17
18/**
19 * <b><u>ControlPreferenceInitializer</u></b>
20 * <p>
21 * A class to initialize the preferences.
22 * </p>
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() {
31 final IPreferenceStore store = Activator.getDefault().getPreferenceStore();
32 //Set default User ID if none already stored in preferences
33 store.setDefault(ControlPreferences.TRACE_CONTROL_TRACING_GROUP_PREF, ControlPreferences.TRACE_CONTROL_DEFAULT_TRACING_GROUP);
34 store.setDefault(ControlPreferences.TRACE_CONTROL_LOG_APPEND_PREF, false);
35 store.setDefault(ControlPreferences.TRACE_CONTROL_LOG_FILE_PATH_PREF, ControlPreferences.TRACE_CONTROL_DEFAULT_LOG_PATH);
36 store.setDefault(ControlPreferences.TRACE_CONTROL_LOG_COMMANDS_PREF, false);
37 store.setDefault(ControlPreferences.TRACE_CONTROL_VERBOSE_LEVEL_PREF, ControlPreferences.TRACE_CONTROL_VERBOSE_LEVEL_NONE);
38 }
39}
This page took 0.025012 seconds and 5 git commands to generate.