tmf: Update copyright headers in tmf.core
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / trace / TmfTimestampLocation.java
index 985dece5e169f65af5c1c65401fecfe8430bcfd2..5228452989558ebfd7aa8dc76734cd4ab79d253f 100644 (file)
@@ -1,6 +1,5 @@
 /*******************************************************************************
-
- * Copyright (c) 2012 Ericsson
+ * Copyright (c) 2012, 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
@@ -13,7 +12,7 @@
 
 package org.eclipse.linuxtools.tmf.core.trace;
 
-import org.eclipse.linuxtools.tmf.core.event.ITmfTimestamp;
+import org.eclipse.linuxtools.tmf.core.timestamp.ITmfTimestamp;
 
 /**
  * A concrete implementation of TmfLocation based on ITmfTimestamp:s
@@ -21,7 +20,7 @@ import org.eclipse.linuxtools.tmf.core.event.ITmfTimestamp;
  * @author Francois Chouinard
  * @since 2.0
  */
-public class TmfTimestampLocation extends TmfLocation {
+public final class TmfTimestampLocation extends TmfLocation {
 
     /**
      * The normal constructor
@@ -49,20 +48,4 @@ public class TmfTimestampLocation extends TmfLocation {
         return (ITmfTimestamp) super.getLocationInfo();
     }
 
-    /* (non-Javadoc)
-     * @see org.eclipse.linuxtools.tmf.core.trace.TmfLocation#clone()
-     */
-    @Override
-    public TmfTimestampLocation clone() {
-        return (TmfTimestampLocation) super.clone();
-    }
-
-    /* (non-Javadoc)
-     * @see org.eclipse.linuxtools.tmf.core.trace.TmfLocation#cloneValue()
-     */
-    @Override
-    protected ITmfTimestamp cloneLocationInfo() {
-        return getLocationInfo().clone();
-    }
-
 }
This page took 0.025371 seconds and 5 git commands to generate.