lttng: More luna annotation updates
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / trace / ITmfLocation.java
index 813a31edecc1b3ff754033c5b996cd9b6b3ede05..3f7b5279d325534e39febc006ed43669365942c9 100644 (file)
@@ -1,11 +1,11 @@
 /*******************************************************************************
- * Copyright (c) 2009, 2010, 2012 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
  *   Francois Chouinard - Updated as per TMF Trace Model 1.0
 package org.eclipse.linuxtools.tmf.core.trace;
 
 /**
- * <b><u>ITmfLocation</u></b>
+ * The generic trace location in TMF.
  * <p>
  * An ITmfLocation is the equivalent of a random-access file position, holding
  * enough information to allow the positioning of the trace 'pointer' to read an
  * arbitrary event.
  * <p>
- * This location is trace-specific but must be comparable.
+ * This location is trace-specific, must be comparable and immutable.
+ *
+ * @version 2.0
+ * @author Francois Chouinard
  */
-public interface ITmfLocation<L extends Comparable<?>> extends Cloneable {
+public interface ITmfLocation {
 
     // ------------------------------------------------------------------------
     // Getters
     // ------------------------------------------------------------------------
 
     /**
-     * @return the location
+     * Returns the concrete trace location information
+     *
+     * @return the location information
+     * @since 2.0
      */
-    public L getLocation();
-
-    // ------------------------------------------------------------------------
-    // Cloneable
-    // ------------------------------------------------------------------------
-
-    /**
-     * @return a clone of the location
-     */
-    public ITmfLocation<L> clone();
+    Comparable<?> getLocationInfo();
 
 }
This page took 0.024239 seconds and 5 git commands to generate.