tmf: Update copyright headers in tmf.core
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / signal / TmfTraceUpdatedSignal.java
index a84c14505a80d9de3fea2e1946a32f6e9eae3dac..35966ee272e968ce052c529a62dd4092a445d38a 100644 (file)
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2009 Ericsson
+ * Copyright (c) 2009, 2013 Ericsson
  *
  * All rights reserved. This program and the accompanying materials are
  * made available under the terms of the Eclipse Public License v1.0 which
 
 package org.eclipse.linuxtools.tmf.core.signal;
 
-import org.eclipse.linuxtools.tmf.core.event.TmfTimeRange;
+import org.eclipse.linuxtools.tmf.core.timestamp.TmfTimeRange;
 import org.eclipse.linuxtools.tmf.core.trace.ITmfTrace;
 
 /**
- * A trace was updated (typically its time range)
+ * Signal indicating a trace has been updated.
+ *
+ * The trace has been indexed up to the specified range.
  *
  * @version 1.0
  * @author Francois Chouinard
@@ -35,6 +37,7 @@ public class TmfTraceUpdatedSignal extends TmfSignal {
      *            The trace that was updated
      * @param range
      *            The new time range of the trace
+     * @since 2.0
      */
     public TmfTraceUpdatedSignal(Object source, ITmfTrace trace, TmfTimeRange range) {
         super(source);
@@ -51,6 +54,7 @@ public class TmfTraceUpdatedSignal extends TmfSignal {
 
     /**
      * @return The time range indicated by this signal
+     * @since 2.0
      */
     public TmfTimeRange getRange() {
         return fTimeRange;
This page took 0.024197 seconds and 5 git commands to generate.