ss: Move plugins to Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / stubs / org / eclipse / linuxtools / tmf / tests / stubs / event / TmfSyntheticEventStub.java
index e4f5ad73b54a1c8d29e7eebab9944516791420ee..2b1dc92c8cbb71beecb9e6c59041cf20d9265473 100644 (file)
@@ -1,17 +1,18 @@
 /*******************************************************************************
- * Copyright (c) 2009, 2010 Ericsson
- * 
+ * Copyright (c) 2009, 2012 Ericsson
+ *
  * All rights reserved. This program and the accompanying materials are
  * made available under the terms of the Eclipse Public License v1.0 which
  * accompanies this distribution, and is available at
  * http://www.eclipse.org/legal/epl-v10.html
- * 
+ *
  * Contributors:
  *   Francois Chouinard - Initial API and implementation
  *******************************************************************************/
 
 package org.eclipse.linuxtools.tmf.tests.stubs.event;
 
+import org.eclipse.linuxtools.tmf.core.event.ITmfEvent;
 import org.eclipse.linuxtools.tmf.core.event.TmfEvent;
 
 /**
@@ -19,14 +20,15 @@ import org.eclipse.linuxtools.tmf.core.event.TmfEvent;
  * <p>
  * TODO: Implement me. Please.
  */
+@SuppressWarnings("javadoc")
 public class TmfSyntheticEventStub extends TmfEvent {
 
 
-       public TmfSyntheticEventStub(TmfEvent event) {
-               super(event);
-       }
-       public TmfSyntheticEventStub(TmfSyntheticEventStub other) {
-               super(other);
-       }
+    public TmfSyntheticEventStub(final ITmfEvent event) {
+        super(event);
+    }
+    public TmfSyntheticEventStub(final TmfSyntheticEventStub other) {
+        super(other);
+    }
 
 }
This page took 0.024955 seconds and 5 git commands to generate.