[Bug309042] Some improvements on TmfExperiment and its context. Also fixed a number...
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.tests / stubs / org / eclipse / linuxtools / tmf / request / TmfEventRequestStub.java
CommitLineData
d18dd09b
ASL
1/*******************************************************************************
2 * Copyright (c) 2009, 2010 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Francois Chouinard - Initial API and implementation
11 *******************************************************************************/
12
13package org.eclipse.linuxtools.tmf.request;
14
15import org.eclipse.linuxtools.tmf.event.TmfEvent;
16import org.eclipse.linuxtools.tmf.event.TmfTimeRange;
17
18/**
19 * <b><u>TmfEventRequestStub</u></b>
20 * <p>
21 * TODO: Implement me. Please.
22 */
23public class TmfEventRequestStub<T extends TmfEvent> extends TmfEventRequest<T> {
24
25 /**
26 * @param range
27 */
28 public TmfEventRequestStub(Class<T> dataType) {
951d134a 29 this(dataType, TmfTimeRange.Eternity, ALL_DATA, DEFAULT_BLOCK_SIZE);
d18dd09b
ASL
30 }
31
32 /**
33 * @param range
34 */
35 public TmfEventRequestStub(Class<T> dataType, TmfTimeRange range) {
951d134a 36 this(dataType, range, ALL_DATA, DEFAULT_BLOCK_SIZE);
d18dd09b
ASL
37 }
38
39 /**
40 * @param range
41 * @param nbRequested
42 */
43 public TmfEventRequestStub(Class<T> dataType, TmfTimeRange range, int nbRequested) {
951d134a 44 this(dataType, range, nbRequested, DEFAULT_BLOCK_SIZE);
d18dd09b
ASL
45 }
46
47 /**
48 * @param range
49 * @param nbRequested
50 * @param blockSize Size of the largest blocks expected
51 */
52 public TmfEventRequestStub(Class<T> dataType, TmfTimeRange range, int nbRequested, int blockSize) {
53 super(dataType, range, nbRequested, blockSize);
54 }
55
56 @Override
57 public void handleData() {
58 // TODO Auto-generated method stub
59 }
60}
This page took 0.026746 seconds and 5 git commands to generate.