Remove all existing @since annotations
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / tmf / core / statistics / TmfStateStatistics.java
index 06afd44e6d87247c3ec3faa511a6e84d6977c1b3..db4c38f28b6c17e746f4ff517969a97c32ca2689 100644 (file)
@@ -19,10 +19,10 @@ import java.util.List;
 import java.util.Map;
 
 import org.eclipse.jdt.annotation.NonNull;
-import org.eclipse.linuxtools.statesystem.core.ITmfStateSystem;
-import org.eclipse.linuxtools.statesystem.core.exceptions.AttributeNotFoundException;
-import org.eclipse.linuxtools.statesystem.core.exceptions.StateSystemDisposedException;
-import org.eclipse.linuxtools.statesystem.core.interval.ITmfStateInterval;
+import org.eclipse.tracecompass.statesystem.core.ITmfStateSystem;
+import org.eclipse.tracecompass.statesystem.core.exceptions.AttributeNotFoundException;
+import org.eclipse.tracecompass.statesystem.core.exceptions.StateSystemDisposedException;
+import org.eclipse.tracecompass.statesystem.core.interval.ITmfStateInterval;
 
 /**
  * Implementation of ITmfStatistics which uses a state history for storing its
@@ -36,7 +36,6 @@ import org.eclipse.linuxtools.statesystem.core.interval.ITmfStateInterval;
  * the time interval selected.
  *
  * @author Alexandre Montplaisir
- * @since 2.0
  */
 public class TmfStateStatistics implements ITmfStatistics {
 
@@ -61,7 +60,6 @@ public class TmfStateStatistics implements ITmfStatistics {
      *            The state system containing the "totals" information
      * @param eventTypes
      *            The state system containing the "event types" information
-     * @since 3.0
      */
     public TmfStateStatistics(@NonNull ITmfStateSystem totals, @NonNull ITmfStateSystem eventTypes) {
         this.totalsStats = totals;
@@ -72,7 +70,6 @@ public class TmfStateStatistics implements ITmfStatistics {
      * Return the state system containing the "totals" values
      *
      * @return The "totals" state system
-     * @since 3.0
      */
     public ITmfStateSystem getTotalsSS() {
         return totalsStats;
@@ -82,7 +79,6 @@ public class TmfStateStatistics implements ITmfStatistics {
      * Return the state system containing the "event types" values
      *
      * @return The "event types" state system
-     * @since 3.0
      */
     public ITmfStateSystem getEventTypesSS() {
         return typesStats;
This page took 0.025747 seconds and 5 git commands to generate.