tmf: Drop generics from ITmfTrace and TmfExperiment
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / stubs / org / eclipse / linuxtools / tmf / tests / stubs / component / TmfClientStub.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.tests.stubs.component;
14
15 import org.eclipse.linuxtools.internal.tmf.core.component.TmfProviderManager;
16 import org.eclipse.linuxtools.tmf.core.component.TmfComponent;
17 import org.eclipse.linuxtools.tmf.core.component.TmfDataProvider;
18 import org.eclipse.linuxtools.tmf.tests.stubs.event.TmfSyntheticEventStub;
19
20 /**
21 * <b><u>TmfClientStub</u></b>
22 * <p>
23 * TODO: Implement me. Please.
24 */
25 @SuppressWarnings({"nls","javadoc"})
26 public class TmfClientStub extends TmfComponent {
27
28 private TmfDataProvider[] fProviders;
29
30 public TmfClientStub() {
31 super("TmfClientStub");
32 }
33
34 public void findProvider() {
35 fProviders = TmfProviderManager.getProviders(TmfSyntheticEventStub.class, TmfSyntheticEventProviderStub.class);
36 // TmfEventRequest<TmfEventStub> request;
37 System.out.println(fProviders.length);
38 }
39
40 public void triggeRequest() {
41 // TmfEventRequest<TmfEventStub> request;
42 }
43
44 }
This page took 0.034529 seconds and 5 git commands to generate.