Remove all existing @since annotations
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / tmf / core / trace / ITmfTrace.java
index 3a3b764c96284dcce64d5ef63d8558d2b414f7b4..f8e3efceac415e70e6dcead9059696ebacd3a55f 100644 (file)
@@ -195,7 +195,6 @@ public interface ITmfTrace extends ITmfEventProvider {
      * @return an IStatus object with validation result. Use severity OK to
      *         indicate success.
      * @see TraceValidationStatus
-     * @since 2.0
      */
     IStatus validate(IProject project, String path);
 
@@ -237,7 +236,6 @@ public interface ITmfTrace extends ITmfEventProvider {
      *
      * @param waitForCompletion
      *            Should we block the caller until indexing is finished, or not.
-     * @since 2.0
      */
     void indexTrace(boolean waitForCompletion);
 
@@ -287,19 +285,16 @@ public interface ITmfTrace extends ITmfEventProvider {
 
     /**
      * @return the trace time range
-     * @since 2.0
      */
     TmfTimeRange getTimeRange();
 
     /**
      * @return the timestamp of the first trace event
-     * @since 2.0
      */
     ITmfTimestamp getStartTime();
 
     /**
      * @return the timestamp of the last trace event
-     * @since 2.0
      */
     ITmfTimestamp getEndTime();
 
@@ -314,7 +309,6 @@ public interface ITmfTrace extends ITmfEventProvider {
 
     /**
      * @return the current trace location
-     * @since 3.0
      */
     ITmfLocation getCurrentLocation();
 
@@ -324,7 +318,6 @@ public interface ITmfTrace extends ITmfEventProvider {
      * @param location
      *            a trace specific location
      * @return a floating-point number between 0.0 (beginning) and 1.0 (end)
-     * @since 3.0
      */
     double getLocationRatio(ITmfLocation location);
 
@@ -345,7 +338,6 @@ public interface ITmfTrace extends ITmfEventProvider {
      * @param location
      *            the trace specific location
      * @return a context which can later be used to read the corresponding event
-     * @since 3.0
      */
     ITmfContext seekEvent(ITmfLocation location);
 
@@ -377,7 +369,6 @@ public interface ITmfTrace extends ITmfEventProvider {
      * @param timestamp
      *            the timestamp of desired event
      * @return a context which can later be used to read the corresponding event
-     * @since 2.0
      */
     ITmfContext seekEvent(ITmfTimestamp timestamp);
 
@@ -399,7 +390,6 @@ public interface ITmfTrace extends ITmfEventProvider {
      * Returns the initial range offset
      *
      * @return the initial range offset
-     * @since 2.0
      */
     ITmfTimestamp getInitialRangeOffset();
 
@@ -412,7 +402,6 @@ public interface ITmfTrace extends ITmfEventProvider {
      * time, etc).
      *
      * @return The host id of this trace
-     * @since 3.0
      */
     @NonNull String getHostId();
 
@@ -424,7 +413,6 @@ public interface ITmfTrace extends ITmfEventProvider {
      * Returns the timestamp transformation for this trace
      *
      * @return the timestamp transform
-     * @since 3.0
      */
     ITmfTimestampTransform getTimestampTransform();
 
@@ -433,7 +421,6 @@ public interface ITmfTrace extends ITmfEventProvider {
      *
      * @param tt
      *            The timestamp transform for all timestamps of this trace
-     * @since 3.0
      */
     void setTimestampTransform(final ITmfTimestampTransform tt);
 
@@ -443,7 +430,6 @@ public interface ITmfTrace extends ITmfEventProvider {
      * @param ts
      *            The time in nanoseconds with which to create the timestamp
      * @return The new timestamp
-     * @since 3.0
      */
     ITmfTimestamp createTimestamp(long ts);
 
This page took 0.025691 seconds and 5 git commands to generate.