[Bug292967] Second part of request coalescing + unit tests + minor fixes.
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.tests / stubs / org / eclipse / linuxtools / tmf / request / TmfDataRequestStub.java
index f5630a4596b99ad77128892b7971b433a2db8b29..7e41522d0ec4fd6ecc79681c1d75794c74de2564 100644 (file)
@@ -25,14 +25,14 @@ public class TmfDataRequestStub<T extends TmfData> extends TmfDataRequest<T> {
      * Default constructor
      */
     public TmfDataRequestStub(Class<T> dataType) {
-        super(dataType);
+        this(dataType, 0, ALL_DATA, DEFAULT_BLOCK_SIZE);
     }
 
     /**
      * @param nbRequested
      */
     public TmfDataRequestStub(Class<T> dataType, int index) {
-        super(dataType, index);
+        this(dataType, index, ALL_DATA, DEFAULT_BLOCK_SIZE);
     }
 
     /**
@@ -40,7 +40,7 @@ public class TmfDataRequestStub<T extends TmfData> extends TmfDataRequest<T> {
      * @param nbRequested
      */
     public TmfDataRequestStub(Class<T> dataType, int index, int nbRequested) {
-       super(dataType, index, nbRequested);
+        this(dataType, index, nbRequested, DEFAULT_BLOCK_SIZE);
     }
 
     /**
This page took 0.023955 seconds and 5 git commands to generate.