- Introduced TmfExperiment (single trace for now)
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf / src / org / eclipse / linuxtools / tmf / trace / TmfStreamUpdatedSignal.java
CommitLineData
0ab46cd3
FC
1/*******************************************************************************
2 * Copyright (c) 2009 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 * Francois Chouinard - Initial API and implementation
11 *******************************************************************************/
12
62d1696a 13package org.eclipse.linuxtools.tmf.trace;
50adc88e 14
62d1696a 15import org.eclipse.linuxtools.tmf.event.TmfTimeRange;
50adc88e 16import org.eclipse.linuxtools.tmf.signal.TmfSignal;
0ab46cd3
FC
17
18/**
82b08e62 19 * <b><u>TmfStreamUpdatedEvent</u></b>
0ab46cd3
FC
20 * <p>
21 * TODO: Implement me. Please.
22 */
82b08e62 23public class TmfStreamUpdatedSignal extends TmfSignal {
50adc88e 24
62d1696a
FC
25 private final ITmfTrace fEventStream;
26 private final TmfTimeRange fTimeRange;
50adc88e 27
62d1696a 28 public TmfStreamUpdatedSignal(Object source, ITmfTrace stream, TmfTimeRange range) {
50adc88e
FC
29 super(source);
30 fEventStream = stream;
62d1696a 31 fTimeRange = range;
50adc88e 32 }
0ab46cd3 33
62d1696a 34 public ITmfTrace getEventStream() {
50adc88e 35 return fEventStream;
0ab46cd3 36 }
62d1696a
FC
37
38 public TmfTimeRange getEventRange() {
39 return fTimeRange;
40 }
0ab46cd3 41}
This page took 0.026669 seconds and 5 git commands to generate.