tmf: Rename packages to org.eclipse.tracecompass.*
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / internal / tmf / core / TmfCorePreferenceInitializer.java
1 /*******************************************************************************
2 * Copyright (c) 2013 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 * Marc-Andre Laperle - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.tracecompass.internal.tmf.core;
14
15 import org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer;
16 import org.eclipse.tracecompass.tmf.core.timestamp.TmfTimePreferences;
17
18 /**
19 * Preference initializer for tmf.core
20 *
21 */
22 public class TmfCorePreferenceInitializer extends AbstractPreferenceInitializer {
23
24 @Override
25 public void initializeDefaultPreferences() {
26 TmfTimePreferences.init();
27 }
28
29 }
This page took 0.03311 seconds and 5 git commands to generate.