tmf: Update copyright headers in tmf.core
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / stubs / org / eclipse / linuxtools / tmf / tests / stubs / trace / TmfEmptyTraceStub.java
index ab8c584d27c034fa9dfcb9bcb27132e481640da3..9c9e3210716a0134f2641e74ee68958cebda1671 100644 (file)
@@ -1,24 +1,21 @@
 /*******************************************************************************
- * Copyright (c) 2009, 2010 Ericsson
- * 
+ * Copyright (c) 2009, 2013 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.trace;
 
-import java.io.FileNotFoundException;
-
-import org.eclipse.linuxtools.tmf.core.event.TmfEvent;
+import org.eclipse.linuxtools.tmf.core.event.ITmfEvent;
 import org.eclipse.linuxtools.tmf.core.trace.ITmfContext;
 import org.eclipse.linuxtools.tmf.core.trace.ITmfLocation;
 import org.eclipse.linuxtools.tmf.core.trace.TmfContext;
-import org.eclipse.linuxtools.tmf.core.trace.TmfLocation;
 
 /**
  * <b><u>TmfEmptyTraceStub</u></b>
@@ -27,13 +24,15 @@ import org.eclipse.linuxtools.tmf.core.trace.TmfLocation;
  */
 public class TmfEmptyTraceStub extends TmfTraceStub {
 
+    /**
+     *
+     */
     // ------------------------------------------------------------------------
     // Constructors
     // ------------------------------------------------------------------------
 
     /**
-     * @param path
-     * @throws FileNotFoundException
+     *
      */
     public TmfEmptyTraceStub() {
         super();
@@ -45,7 +44,7 @@ public class TmfEmptyTraceStub extends TmfTraceStub {
     // ------------------------------------------------------------------------
 
     @Override
-    public TmfContext seekEvent(final ITmfLocation<?> location) {
+    public TmfContext seekEvent(final ITmfLocation location) {
         return new TmfContext();
     }
 
@@ -55,17 +54,17 @@ public class TmfEmptyTraceStub extends TmfTraceStub {
     }
 
     @Override
-    public double getLocationRatio(ITmfLocation<?> location) {
+    public double getLocationRatio(ITmfLocation location) {
         return 0;
     }
 
     @Override
-    public TmfLocation<Long> getCurrentLocation() {
+    public ITmfLocation getCurrentLocation() {
         return null;
     }
 
     @Override
-    public TmfEvent parseEvent(final ITmfContext context) {
+    public ITmfEvent parseEvent(final ITmfContext context) {
         return null;
     }
 
This page took 0.024986 seconds and 5 git commands to generate.