tmf: Rename time range signals
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / tmf / core / trace / TmfTraceManager.java
index c96f8c77a7b52fba16e28f07b5f89d17daadd8e5..474a0cd32d5e0c330f60acc12d03bbcb4d959689 100644 (file)
@@ -38,10 +38,10 @@ import org.eclipse.tracecompass.common.core.NonNullUtils;
 import org.eclipse.tracecompass.internal.tmf.core.Activator;
 import org.eclipse.tracecompass.tmf.core.TmfCommonConstants;
 import org.eclipse.tracecompass.tmf.core.signal.TmfEventFilterAppliedSignal;
-import org.eclipse.tracecompass.tmf.core.signal.TmfRangeSynchSignal;
+import org.eclipse.tracecompass.tmf.core.signal.TmfWindowRangeUpdatedSignal;
 import org.eclipse.tracecompass.tmf.core.signal.TmfSignalHandler;
 import org.eclipse.tracecompass.tmf.core.signal.TmfSignalManager;
-import org.eclipse.tracecompass.tmf.core.signal.TmfTimeSynchSignal;
+import org.eclipse.tracecompass.tmf.core.signal.TmfSelectionRangeUpdatedSignal;
 import org.eclipse.tracecompass.tmf.core.signal.TmfTraceClosedSignal;
 import org.eclipse.tracecompass.tmf.core.signal.TmfTraceOpenedSignal;
 import org.eclipse.tracecompass.tmf.core.signal.TmfTraceSelectedSignal;
@@ -350,16 +350,17 @@ public final class TmfTraceManager {
     }
 
     /**
-     * Signal handler for the TmfTimeSynchSignal signal.
+     * Signal handler for the selection range signal.
      *
      * The current time of *all* traces whose range contains the requested new
      * selection time range will be updated.
      *
      * @param signal
      *            The incoming signal
+     * @since 1.0
      */
     @TmfSignalHandler
-    public synchronized void timeUpdated(final TmfTimeSynchSignal signal) {
+    public synchronized void selectionRangeUpdated(final TmfSelectionRangeUpdatedSignal signal) {
         final ITmfTimestamp beginTs = signal.getBeginTime();
         final ITmfTimestamp endTs = signal.getEndTime();
 
@@ -383,16 +384,17 @@ public final class TmfTraceManager {
     }
 
     /**
-     * Signal handler for the TmfRangeSynchSignal signal.
+     * Signal handler for the window range signal.
      *
      * The current window time range of *all* valid traces will be updated to
      * the new requested times.
      *
      * @param signal
      *            The incoming signal
+     * @since 1.0
      */
     @TmfSignalHandler
-    public synchronized void timeRangeUpdated(final TmfRangeSynchSignal signal) {
+    public synchronized void windowRangeUpdated(final TmfWindowRangeUpdatedSignal signal) {
         for (Map.Entry<ITmfTrace, TmfTraceContext> entry : fTraces.entrySet()) {
             final ITmfTrace trace = entry.getKey();
             final TmfTraceContext prevCtx = checkNotNull(entry.getValue());
This page took 0.0285879999999999 seconds and 5 git commands to generate.