Remove all existing @since annotations
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / tmf / ui / views / timegraph / AbstractTimeGraphView.java
index a42fae4863858b9a4b4621d0284f5294deed3b75..ada314292b7282802b5da1ddd99134f2aa139cf9 100644 (file)
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2012, 2014 Ericsson, École Polytechnique de Montréal
+ * Copyright (c) 2012, 2015 Ericsson, École Polytechnique de Montréal
  *
  * 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.tracecompass.tmf.ui.views.timegraph;
 
-import static org.eclipse.tracecompass.common.core.NonNullUtils.checkNotNull;
-
 import java.util.ArrayList;
-import java.util.Arrays;
 import java.util.Collections;
 import java.util.Comparator;
 import java.util.HashMap;
@@ -85,8 +82,6 @@ import org.eclipse.ui.IActionBars;
  *
  * This view contains either a time graph viewer, or a time graph combo which is
  * divided between a tree viewer on the left and a time graph viewer on the right.
- *
- * @since 2.1
  */
 public abstract class AbstractTimeGraphView extends TmfView {
 
@@ -444,17 +439,11 @@ public abstract class AbstractTimeGraphView extends TmfView {
             return new String();
         }
 
-        /**
-         * @since 3.2
-         */
         @Override
         public Image getImage(Object element) {
             return null;
         }
 
-        /**
-         * @since 3.2
-         */
         @Override
         public String getText(Object element) {
             TimeGraphEntry entry = (TimeGraphEntry) element;
@@ -600,7 +589,6 @@ public abstract class AbstractTimeGraphView extends TmfView {
      * Getter for the presentation provider
      *
      * @return The time graph presentation provider
-     * @since 3.0
      */
     protected ITimeGraphPresentationProvider2 getPresentationProvider() {
         return fPresentation;
@@ -656,8 +644,6 @@ public abstract class AbstractTimeGraphView extends TmfView {
      *
      * @param labelProvider
      *            The filter label provider
-     *
-     * @since 3.0
      */
     protected void setFilterLabelProvider(final TreeLabelProvider labelProvider) {
         fFilterLabelProvider = labelProvider;
@@ -767,7 +753,6 @@ public abstract class AbstractTimeGraphView extends TmfView {
      *            the trace
      *
      * @return the entry list map
-     * @since 3.0
      */
     protected List<TimeGraphEntry> getEntryList(ITmfTrace trace) {
         synchronized (fEntryListMap) {
@@ -796,7 +781,6 @@ public abstract class AbstractTimeGraphView extends TmfView {
      *            the trace
      * @param list
      *            the list of time graph entries to add
-     * @since 3.0
      */
     protected void addToEntryList(ITmfTrace trace, List<TimeGraphEntry> list) {
         synchronized (fEntryListMap) {
@@ -816,7 +800,6 @@ public abstract class AbstractTimeGraphView extends TmfView {
      *            the trace
      * @param list
      *            the list of time graph entries to remove
-     * @since 3.0
      */
     protected void removeFromEntryList(ITmfTrace trace, List<TimeGraphEntry> list) {
         synchronized (fEntryListMap) {
@@ -941,7 +924,6 @@ public abstract class AbstractTimeGraphView extends TmfView {
      *
      * @param signal
      *            The incoming signal
-     * @since 2.0
      */
     @TmfSignalHandler
     public void traceOpened(TmfTraceOpenedSignal signal) {
@@ -1057,7 +1039,6 @@ public abstract class AbstractTimeGraphView extends TmfView {
 
     /**
      * @param signal the format of the timestamps was updated.
-     * @since 2.1
      */
     @TmfSignalHandler
     public void updateTimeFormat( final TmfTimestampFormatUpdateSignal signal){
@@ -1083,7 +1064,6 @@ public abstract class AbstractTimeGraphView extends TmfView {
 
     /**
      * Forces a rebuild of the entries list, even if entries already exist for this trace
-     * @since 3.0
      */
     protected void rebuild() {
         setStartTime(Long.MAX_VALUE);
@@ -1127,10 +1107,9 @@ public abstract class AbstractTimeGraphView extends TmfView {
      * @param trace
      *            The trace associated with this view
      * @return List of traces with data to display
-     * @since 3.0
      */
     protected @NonNull Iterable<ITmfTrace> getTracesToBuild(@NonNull ITmfTrace trace) {
-        return checkNotNull(Arrays.asList(TmfTraceManager.getTraceSet(trace)));
+        return TmfTraceManager.getTraceSet(trace);
     }
 
     /**
@@ -1144,7 +1123,6 @@ public abstract class AbstractTimeGraphView extends TmfView {
      *            The parent of the trace set, or the trace itself
      * @param monitor
      *            The progress monitor object
-     * @since 3.0
      */
     protected abstract void buildEventList(@NonNull ITmfTrace trace, @NonNull ITmfTrace parentTrace, @NonNull IProgressMonitor monitor);
 
@@ -1180,7 +1158,6 @@ public abstract class AbstractTimeGraphView extends TmfView {
      * @param monitor
      *            The progress monitor object
      * @return The list of link events
-     * @since 2.1
      */
     protected @Nullable List<ILinkEvent> getLinkList(long startTime, long endTime,
             long resolution, @NonNull IProgressMonitor monitor) {
This page took 0.025394 seconds and 5 git commands to generate.