analysis: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.remote.core / src / org / eclipse / tracecompass / internal / tmf / remote / core / preferences / TmfRemotePreferenceInitializer.java
CommitLineData
ec619615
BH
1/**********************************************************************
2 * Copyright (c) 2015 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.tracecompass.internal.tmf.remote.core.preferences;
13
14import org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer;
15
16/**
17 * A class to initialize the preferences.
18 *
19 * @author Bernd Hufmann
20 */
21public class TmfRemotePreferenceInitializer extends AbstractPreferenceInitializer {
22
23 @Override
24 public void initializeDefaultPreferences() {
25 TmfRemotePreferences.init();
26 }
27}
This page took 0.032776 seconds and 5 git commands to generate.