tmf: Use tabs in statistics view for each traces
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.core / src / org / eclipse / linuxtools / internal / lttng / core / LttngFactory.java
CommitLineData
5d10d135
ASL
1/*******************************************************************************
2 * Copyright (c) 2009, 2010 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 * Alvaro Sanchez-Leon (alvsan09@gmail.com) - Initial API and implementation
11 *******************************************************************************/
5945cec9 12package org.eclipse.linuxtools.internal.lttng.core;
5d10d135 13
5945cec9
FC
14import org.eclipse.linuxtools.internal.lttng.core.control.LttngCoreProviderFactory;
15import org.eclipse.linuxtools.internal.lttng.core.state.experiment.StateManagerFactory;
5d10d135
ASL
16
17/**
18 * @author alvaro
19 *
20 */
21public class LttngFactory {
5945cec9 22 public static void init() {
5d10d135
ASL
23 // Make sure the experiment component is ready to listen to experiment
24 // selections
25 StateManagerFactory.getExperimentManager();
c1c69938
FC
26
27 // The Synthetic event providers must also be notified of selections, in
28 // order to keep the synchronization orders from TMF, this element is
5d10d135 29 // shared for all synthetic event requests
c1c69938 30 LttngCoreProviderFactory.initialize();
5d10d135
ASL
31
32 // start debugging as per .options
33 TraceDebug.init();
34 }
35}
This page took 0.035242 seconds and 5 git commands to generate.