Re-structure LTTng sub-project as per the Linux Tools guidelines
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.core / src / org / eclipse / linuxtools / lttng / core / signal / ILttExperimentSelectedListener.java
CommitLineData
5d10d135
ASL
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 *******************************************************************************/
6c13869b 12package org.eclipse.linuxtools.lttng.core.signal;
5d10d135 13
6c13869b
FC
14import org.eclipse.linuxtools.lttng.core.event.LttngEvent;
15import org.eclipse.linuxtools.tmf.core.experiment.TmfExperiment;
16import org.eclipse.linuxtools.tmf.core.signal.TmfExperimentRangeUpdatedSignal;
5d10d135
ASL
17
18/**
19 * @author alvaro
20 *
21 */
22public interface ILttExperimentSelectedListener {
23
24 /**
25 *
26 * @param source
27 * @param experiment
28 */
29 public void experimentSelected(Object source,
30 TmfExperiment<LttngEvent> experiment);
31
32 /**
33 * @param signal
5d10d135 34 */
a79913eb 35 public void experimentRangeUpdated(TmfExperimentRangeUpdatedSignal signal);
5d10d135
ASL
36
37}
This page took 0.029615 seconds and 5 git commands to generate.