ss: Move plugins to Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / signal / TmfRangeSynchSignal.java
index 87185f73edb7a96d2b5bba3e7bda364191fad29b..7d2e00ad68da5bef99a96748a6c2c3772d4c26d1 100644 (file)
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2009, 2013 Ericsson
+ * Copyright (c) 2009, 2014 Ericsson
  *
  * All rights reserved. This program and the accompanying materials are
  * made available under the terms of the Eclipse Public License v1.0 which
@@ -13,7 +13,6 @@
 
 package org.eclipse.linuxtools.tmf.core.signal;
 
-import org.eclipse.linuxtools.tmf.core.timestamp.ITmfTimestamp;
 import org.eclipse.linuxtools.tmf.core.timestamp.TmfTimeRange;
 
 /**
@@ -29,25 +28,6 @@ public class TmfRangeSynchSignal extends TmfSignal {
 
     private final TmfTimeRange fCurrentRange;
 
-    /**
-     * Constructor
-     *
-     * @param source
-     *            Object sending this signal
-     * @param range
-     *            The time range to which we synchronized
-     * @param ts
-     *            The current selected timestamp, independent from the time
-     *            range (ignored)
-     * @since 2.0
-     * @deprecated As of 2.1, use {@link #TmfRangeSynchSignal(Object, TmfTimeRange)}
-     */
-    @Deprecated
-    public TmfRangeSynchSignal(Object source, TmfTimeRange range, ITmfTimestamp ts) {
-        super(source);
-        fCurrentRange = range;
-    }
-
     /**
      * Constructor
      *
@@ -55,7 +35,7 @@ public class TmfRangeSynchSignal extends TmfSignal {
      *            Object sending this signal
      * @param range
      *            The new time range
-     * @since 3.0
+     * @since 2.1
      */
     public TmfRangeSynchSignal(Object source, TmfTimeRange range) {
         super(source);
@@ -70,14 +50,4 @@ public class TmfRangeSynchSignal extends TmfSignal {
         return fCurrentRange;
     }
 
-    /**
-     * @return This signal's current selected timestamp
-     * @since 2.0
-     * @deprecated As of 2.1, this returns null
-     */
-    @Deprecated
-    public ITmfTimestamp getCurrentTime() {
-        return null;
-    }
-
 }
This page took 0.028708 seconds and 5 git commands to generate.