tmf: Move timestamps to their own package
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / signal / TmfTraceUpdatedSignal.java
CommitLineData
8c8bf09f
ASL
1/*******************************************************************************
2 * Copyright (c) 2009 Ericsson
6256d8ad 3 *
8c8bf09f
ASL
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
6256d8ad 8 *
8c8bf09f
ASL
9 * Contributors:
10 * Francois Chouinard - Initial API and implementation
11 *******************************************************************************/
12
6c13869b 13package org.eclipse.linuxtools.tmf.core.signal;
8c8bf09f 14
3bd46eef 15import org.eclipse.linuxtools.tmf.core.timestamp.TmfTimeRange;
6c13869b 16import org.eclipse.linuxtools.tmf.core.trace.ITmfTrace;
8c8bf09f
ASL
17
18/**
faa38350
PT
19 * Signal indicating a trace has been updated.
20 *
21 * The trace has been indexed up to the specified range.
6256d8ad 22 *
4b7b3670
FC
23 * @version 1.0
24 * @author Francois Chouinard
8c8bf09f
ASL
25 */
26public class TmfTraceUpdatedSignal extends TmfSignal {
27
6256d8ad 28 private final ITmfTrace fTrace;
4f8ca6a1
AM
29 private final TmfTimeRange fTimeRange;
30
31 /**
32 * Constructor
33 *
34 * @param source
35 * Object sending this signal
36 * @param trace
37 * The trace that was updated
38 * @param range
39 * The new time range of the trace
3bd46eef 40 * @since 2.0
4f8ca6a1 41 */
6256d8ad 42 public TmfTraceUpdatedSignal(Object source, ITmfTrace trace, TmfTimeRange range) {
4f8ca6a1
AM
43 super(source);
44 fTrace = trace;
45 fTimeRange = range;
46 }
47
48 /**
49 * @return The trace referred to by this signal
50 */
6256d8ad 51 public ITmfTrace getTrace() {
4f8ca6a1
AM
52 return fTrace;
53 }
54
55 /**
56 * @return The time range indicated by this signal
3bd46eef 57 * @since 2.0
4f8ca6a1
AM
58 */
59 public TmfTimeRange getRange() {
60 return fTimeRange;
61 }
62
63 /*
64 * (non-Javadoc)
65 *
66 * @see java.lang.Object#toString()
67 */
68 @Override
3b38ea61 69 @SuppressWarnings("nls")
4f8ca6a1
AM
70 public String toString() {
71 return "[TmfTraceUpdatedSignal (" + fTrace.toString() + ", "
72 + fTimeRange.toString() + ")]";
73 }
8c8bf09f
ASL
74
75}
This page took 0.041629 seconds and 5 git commands to generate.