tmf: Use tabs in statistics view for each traces
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.core / src / org / eclipse / linuxtools / internal / lttng / core / signal / ILttExperimentSelectedListener.java
1 /*******************************************************************************
2 * Copyright (c) 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 *******************************************************************************/
12 package org.eclipse.linuxtools.internal.lttng.core.signal;
13
14 import org.eclipse.linuxtools.tmf.core.signal.TmfExperimentRangeUpdatedSignal;
15 import org.eclipse.linuxtools.tmf.core.trace.TmfExperiment;
16
17 /**
18 * @author alvaro
19 *
20 */
21 public interface ILttExperimentSelectedListener {
22
23 /**
24 *
25 * @param source
26 * @param experiment
27 */
28 public void experimentSelected(Object source, TmfExperiment experiment);
29
30 /**
31 * @param signal
32 */
33 public void experimentRangeUpdated(TmfExperimentRangeUpdatedSignal signal);
34
35 }
This page took 0.035127 seconds and 5 git commands to generate.