tmf/lttng: Fix newly-introduced Javadoc warnings
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / request / TmfDataRequest.java
index e7abfb8b25f32e0867cd9d68f0bfd55355f4626f..025657ab0d1d66d8bd55ddf282df10d893f976f8 100644 (file)
@@ -90,11 +90,21 @@ public abstract class TmfDataRequest implements ITmfDataRequest {
 
     private final Class<? extends ITmfEvent> fDataType;
     private final ExecutionType fExecType;
-    private final int fRequestId; // A unique request ID
-    protected long fIndex; // The index (rank) of the requested event
-    protected int fNbRequested; // The number of requested events (ALL_DATA for all)
-    private final int fBlockSize; // The block size (for BG requests)
-    private int fNbRead; // The number of reads so far
+
+    /** A unique request ID */
+    private final int fRequestId;
+
+    /** The index (rank) of the requested event */
+    protected long fIndex;
+
+    /** The number of requested events (ALL_DATA for all) */
+    protected int fNbRequested;
+
+    /** The block size (for BG requests) */
+    private final int fBlockSize;
+
+    /** The number of reads so far */
+    private int fNbRead;
 
     private final CountDownLatch startedLatch = new CountDownLatch(1);
     private final CountDownLatch completedLatch = new CountDownLatch(1);
This page took 0.024315 seconds and 5 git commands to generate.