Re-structure LTTng sub-project as per the Linux Tools guidelines
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / stubs / org / eclipse / linuxtools / tmf / stubs / request / TmfEventRequestStub.java
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
13 package org.eclipse.linuxtools.tmf.stubs.request;
14
15 import org.eclipse.linuxtools.tmf.core.event.TmfEvent;
16 import org.eclipse.linuxtools.tmf.core.event.TmfTimeRange;
17 import org.eclipse.linuxtools.tmf.core.request.TmfEventRequest;
18
19 /**
20 * <b><u>TmfEventRequestStub</u></b>
21 * <p>
22 * TODO: Implement me. Please.
23 */
24 public class TmfEventRequestStub<T extends TmfEvent> extends TmfEventRequest<T> {
25
26 /**
27 * @param range
28 */
29 public TmfEventRequestStub(Class<T> dataType) {
30 super(dataType);
31 }
32
33 /**
34 * @param range
35 */
36 public TmfEventRequestStub(Class<T> dataType, TmfTimeRange range) {
37 super(dataType, range);
38 }
39
40 /**
41 * @param range
42 * @param nbRequested
43 */
44 public TmfEventRequestStub(Class<T> dataType, TmfTimeRange range, int nbRequested) {
45 super(dataType, range, nbRequested);
46 }
47
48 /**
49 * @param range
50 * @param nbRequested
51 * @param blockSize Size of the largest blocks expected
52 */
53 public TmfEventRequestStub(Class<T> dataType, TmfTimeRange range, int nbRequested, int blockSize) {
54 super(dataType, range, nbRequested, blockSize);
55 }
56
57 @Override
58 public void handleData(T data) {
59 super.handleData(data);
60 }
61 }
This page took 0.04854 seconds and 6 git commands to generate.