Fix simple Javadoc warnings
authorAlexandre Montplaisir <alexmonthy@efficios.com>
Wed, 9 Mar 2016 22:56:55 +0000 (17:56 -0500)
committerAlexandre Montplaisir <alexmonthy@efficios.com>
Fri, 11 Mar 2016 17:31:41 +0000 (12:31 -0500)
Change-Id: I4e5189d3c9b788377aac398979260bc2c0907cc4
Signed-off-by: Alexandre Montplaisir <alexmonthy@efficios.com>
Reviewed-on: https://git.eclipse.org/r/68102

statesystem/org.eclipse.tracecompass.statesystem.core/src/org/eclipse/tracecompass/statesystem/core/ITmfStateSystemBuilder.java
tmf/org.eclipse.tracecompass.tmf.ui/src/org/eclipse/tracecompass/tmf/ui/views/uml2sd/loader/TmfUml2SDSyncLoader.java

index 541153362a394f98838f9baeaf92088814c7a40b..9cd6dbf8d992a29c1117112dcc9fc8b10bf6dbd8 100644 (file)
@@ -147,7 +147,7 @@ public interface ITmfStateSystemBuilder extends ITmfStateSystem {
      * @throws AttributeNotFoundException
      *             If the quark is invalid
      * @deprecated Use
-     *             {@link StateSystemBuilderUtils#incrementAttributeInt(ITmfStateSystemBuilder, long, int, Integer)}
+     *             {@link StateSystemBuilderUtils#incrementAttributeInt(ITmfStateSystemBuilder, long, int, int)}
      *             instead
      */
     @Deprecated
index f70075d85c7a1770cdcb4b3b19f98f2f2c4508d6..c649edcbfc14413c5efd429c63e800df8687afa8 100644 (file)
@@ -1343,10 +1343,21 @@ public class TmfUml2SDSyncLoader extends TmfComponent implements IUml2SDLoader,
 
         /**
          * Constructor
-         * @param range see {@link TmfEventRequest#TmfEventRequest(Class, TmfTimeRange, long, int, org.eclipse.tracecompass.tmf.core.request.ITmfEventRequest.ExecutionType) TmfEventRequest}
-         * @param nbRequested see {@link TmfEventRequest#TmfEventRequest(Class, TmfTimeRange, long, int, org.eclipse.tracecompass.tmf.core.request.ITmfEventRequest.ExecutionType) TmfEventRequest}
-         * @param priority {@link ExecutionType#FOREGROUND} or {@link ExecutionType#BACKGROUND}
-         * @param criteria The search criteria
+         *
+         * @param range
+         *            see
+         *            {@link TmfEventRequest#TmfEventRequest(Class, TmfTimeRange, long, int, org.eclipse.tracecompass.tmf.core.request.ITmfEventRequest.ExecutionType)
+         *            TmfEventRequest}
+         * @param nbRequested
+         *            see
+         *            {@link TmfEventRequest#TmfEventRequest(Class, TmfTimeRange, long, int, org.eclipse.tracecompass.tmf.core.request.ITmfEventRequest.ExecutionType)
+         *            TmfEventRequest}
+         * @param priority
+         *            {@link org.eclipse.tracecompass.tmf.core.request.ITmfEventRequest.ExecutionType#FOREGROUND}
+         *            or
+         *            {@link org.eclipse.tracecompass.tmf.core.request.ITmfEventRequest.ExecutionType#BACKGROUND}
+         * @param criteria
+         *            The search criteria
          */
         public SearchEventRequest(TmfTimeRange range, int nbRequested, ExecutionType priority, Criteria criteria) {
             this(range, nbRequested, priority, criteria, null);
@@ -1354,11 +1365,22 @@ public class TmfUml2SDSyncLoader extends TmfComponent implements IUml2SDLoader,
 
         /**
          * Constructor
-         * @param range see {@link TmfEventRequest#TmfEventRequest(Class, TmfTimeRange, long, int, org.eclipse.tracecompass.tmf.core.request.ITmfEventRequest.ExecutionType) TmfEventRequest}
-         * @param nbRequested see {@link TmfEventRequest#TmfEventRequest(Class, TmfTimeRange, long, int, org.eclipse.tracecompass.tmf.core.request.ITmfEventRequest.ExecutionType) TmfEventRequest}
-         * @param priority {@link ExecutionType#FOREGROUND} or {@link ExecutionType#BACKGROUND}
-         * @param criteria The search criteria
-         * @param monitor progress monitor
+         *
+         * @param range
+         *            see
+         *            {@link TmfEventRequest#TmfEventRequest(Class, TmfTimeRange, long, int, org.eclipse.tracecompass.tmf.core.request.ITmfEventRequest.ExecutionType)
+         *            TmfEventRequest}
+         * @param nbRequested
+         *            see
+         *            {@link TmfEventRequest#TmfEventRequest(Class, TmfTimeRange, long, int, org.eclipse.tracecompass.tmf.core.request.ITmfEventRequest.ExecutionType)
+         *            TmfEventRequest}
+         * @param priority
+         *            {@link org.eclipse.tracecompass.tmf.core.request.ITmfEventRequest.ExecutionType#FOREGROUND} or
+         *            {@link org.eclipse.tracecompass.tmf.core.request.ITmfEventRequest.ExecutionType#BACKGROUND}
+         * @param criteria
+         *            The search criteria
+         * @param monitor
+         *            progress monitor
          */
         public SearchEventRequest(TmfTimeRange range, int nbRequested, ExecutionType priority, Criteria criteria, IProgressMonitor monitor) {
             super(ITmfEvent.class, range, 0, nbRequested, priority);
This page took 0.026603 seconds and 5 git commands to generate.