Copyright header update, 2015 edition
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / internal / tmf / core / TmfCorePreferenceInitializer.java
CommitLineData
c1cd9635 1/*******************************************************************************
ed902a2b 2 * Copyright (c) 2013, 2014 Ericsson
c1cd9635
MAL
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
2bdf0193 13package org.eclipse.tracecompass.internal.tmf.core;
c1cd9635
MAL
14
15import org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer;
2bdf0193 16import org.eclipse.tracecompass.tmf.core.timestamp.TmfTimePreferences;
c1cd9635
MAL
17
18/**
19 * Preference initializer for tmf.core
20 *
21 */
22public class TmfCorePreferenceInitializer extends AbstractPreferenceInitializer {
23
24 @Override
25 public void initializeDefaultPreferences() {
26 TmfTimePreferences.init();
27 }
28
29}
This page took 0.052796 seconds and 5 git commands to generate.