analysis: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core.tests / stubs / org / eclipse / tracecompass / tmf / tests / stubs / event / TmfSyntheticEventStub.java
1 /*******************************************************************************
2 * Copyright (c) 2009, 2014 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.tracecompass.tmf.tests.stubs.event;
14
15 import org.eclipse.jdt.annotation.NonNull;
16 import org.eclipse.tracecompass.tmf.core.event.ITmfEvent;
17 import org.eclipse.tracecompass.tmf.core.event.TmfEvent;
18
19 /**
20 * <b><u>TmfSyntheticEventStub</u></b>
21 * <p>
22 * TODO: Implement me. Please.
23 */
24 @SuppressWarnings("javadoc")
25 public class TmfSyntheticEventStub extends TmfEvent {
26
27
28 public TmfSyntheticEventStub(final @NonNull ITmfEvent event) {
29 super(event);
30 }
31 public TmfSyntheticEventStub(final @NonNull TmfSyntheticEventStub other) {
32 super(other);
33 }
34
35 }
This page took 0.034985 seconds and 5 git commands to generate.