tmf : introducing the mipmap
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / internal / tmf / core / TmfCorePreferenceInitializer.java
CommitLineData
c1cd9635
MAL
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
13package org.eclipse.linuxtools.internal.tmf.core;
14
15import org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer;
16import org.eclipse.linuxtools.tmf.core.timestamp.TmfTimePreferences;
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.024078 seconds and 5 git commands to generate.