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 / TmfDataRequestStub.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.TmfData;
16 import org.eclipse.linuxtools.tmf.core.request.TmfDataRequest;
17
18 /**
19 * <b><u>TmfDataRequestStub</u></b>
20 * <p>
21 * TODO: Implement me. Please.
22 */
23 public class TmfDataRequestStub<T extends TmfData> extends TmfDataRequest<T> {
24
25 /**
26 * Default constructor
27 */
28 public TmfDataRequestStub(Class<T> dataType) {
29 super(dataType);
30 }
31
32 /**
33 * @param nbRequested
34 */
35 public TmfDataRequestStub(Class<T> dataType, int index) {
36 super(dataType, index);
37 }
38
39 /**
40 * @param index
41 * @param nbRequested
42 */
43 public TmfDataRequestStub(Class<T> dataType, int index, int nbRequested) {
44 super(dataType, index, nbRequested);
45 }
46
47 /**
48 * @param index
49 * @param nbRequested
50 * @param blockSize
51 */
52 public TmfDataRequestStub(Class<T> dataType, int index, int nbRequested, int blockSize) {
53 super(dataType, index, nbRequested, blockSize);
54 }
55
56 @Override
57 public void handleData(T data) {
58 super.handleData(data);
59 }
60
61 }
This page took 0.031039 seconds and 5 git commands to generate.