/******************************************************************************* * Copyright (c) 2013, 2014 Ericsson * * All rights reserved. This program and the accompanying materials are * made available under the terms of the Eclipse Public License v1.0 which * accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Marc-Andre Laperle - Initial API and implementation *******************************************************************************/ package org.eclipse.tracecompass.internal.tmf.core; import org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer; import org.eclipse.tracecompass.tmf.core.timestamp.TmfTimePreferences; /** * Preference initializer for tmf.core * */ public class TmfCorePreferenceInitializer extends AbstractPreferenceInitializer { @Override public void initializeDefaultPreferences() { TmfTimePreferences.init(); } }