tmf: Add missing @since 2.1 in new methods
authorAlexandre Montplaisir <alexmonthy@efficios.com>
Tue, 21 Jun 2016 22:12:13 +0000 (18:12 -0400)
committerAlexandre Montplaisir <alexmonthy@efficios.com>
Wed, 22 Jun 2016 20:25:30 +0000 (16:25 -0400)
Change-Id: Idf79b3b39463a257825414b58c3f37dad48e0253
Signed-off-by: Alexandre Montplaisir <alexmonthy@efficios.com>
Reviewed-on: https://git.eclipse.org/r/75679
Reviewed-by: Hudson CI
Reviewed-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
Tested-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
tmf/org.eclipse.tracecompass.tmf.core/META-INF/MANIFEST.MF
tmf/org.eclipse.tracecompass.tmf.core/src/org/eclipse/tracecompass/tmf/core/trace/TmfTraceUtils.java

index 95adb56cf54f4e7ce2f4de196609f5380dcb649d..95204f5cca2b3e3767f046f76f45bd31f5296c7e 100644 (file)
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
 Bundle-ManifestVersion: 2
 Bundle-Name: %Bundle-Name
 Bundle-Vendor: %Bundle-Vendor
-Bundle-Version: 2.0.0.qualifier
+Bundle-Version: 2.1.0.qualifier
 Bundle-Localization: plugin
 Bundle-SymbolicName: org.eclipse.tracecompass.tmf.core;singleton:=true
 Bundle-Activator: org.eclipse.tracecompass.internal.tmf.core.Activator
index 084cf22076af7f6fbc1a1f8a99b8cc950bad29c1..cc47c59e7c353060cf73fd750cab95fb029670f5 100644 (file)
@@ -195,6 +195,7 @@ public final class TmfTraceUtils {
      *            The predicate to test events against
      * @return The first event matching the predicate, or null if the end of the
      *         trace was reached and no event was found
+     * @since 2.1
      */
     public static @Nullable ITmfEvent getNextEventMatching(ITmfTrace trace, long startRank, Predicate<ITmfEvent> predicate) {
         /* rank + 1 because we do not want to include the start event itself in the search */
@@ -221,6 +222,7 @@ public final class TmfTraceUtils {
      *            The predicate to test events against
      * @return The first event found matching the predicate, or null if the
      *         beginning of the trace was reached and no event was found
+     * @since 2.1
      */
     public static @Nullable ITmfEvent getPreviousEventMatching(ITmfTrace trace, long startRank, Predicate<ITmfEvent> predicate) {
         /*
This page took 0.035009 seconds and 5 git commands to generate.