[Bug 303523] LTTng/TMF udpates:
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf / src / org / eclipse / linuxtools / tmf / trace / TmfTraceCheckpoint.java
index 60a8d44688e398bf51ae1081fb13322f4b031493..998b72e0a7d48ee1f20924d47d054246822c8520 100644 (file)
@@ -21,16 +21,16 @@ import org.eclipse.linuxtools.tmf.event.TmfTimestamp;
  */
 public class TmfTraceCheckpoint implements Comparable<TmfTraceCheckpoint> {
 
-    // ========================================================================
+    // ------------------------------------------------------------------------
     // Attributes
-    // ========================================================================
+    // ------------------------------------------------------------------------
     
     private final TmfTimestamp fTimestamp;
     private final Object fLocation;
 
-    // ========================================================================
+    // ------------------------------------------------------------------------
     // Constructors
-    // ========================================================================
+    // ------------------------------------------------------------------------
 
     /**
      * @param ts
@@ -41,9 +41,9 @@ public class TmfTraceCheckpoint implements Comparable<TmfTraceCheckpoint> {
         fLocation = location;
     }
 
-    // ========================================================================
+    // ------------------------------------------------------------------------
     // Accessors
-    // ========================================================================
+    // ------------------------------------------------------------------------
 
     /**
      * @return the checkpoint event timestamp
@@ -59,9 +59,9 @@ public class TmfTraceCheckpoint implements Comparable<TmfTraceCheckpoint> {
         return fLocation;
     }
 
-    // ========================================================================
-    // Operators
-    // ========================================================================
+    // ------------------------------------------------------------------------
+    // Comparable
+    // ------------------------------------------------------------------------
 
     public int compareTo(TmfTraceCheckpoint other) {
         return fTimestamp.compareTo(other.fTimestamp, false);
This page took 0.024133 seconds and 5 git commands to generate.