Made BigBang/BigCrunch/Zero ITmfTimestamp:s
authorFrancois Chouinard <fchouinard@gmail.com>
Mon, 13 Feb 2012 14:49:37 +0000 (09:49 -0500)
committerFrancois Chouinard <fchouinard@gmail.com>
Mon, 13 Feb 2012 14:49:37 +0000 (09:49 -0500)
org.eclipse.linuxtools.lttng.core/src/org/eclipse/linuxtools/lttng/core/trace/LTTngExperiment.java
org.eclipse.linuxtools.tmf.core/src/org/eclipse/linuxtools/tmf/core/event/TmfTimestamp.java
org.eclipse.linuxtools.tmf.ui/src/org/eclipse/linuxtools/tmf/ui/parsers/custom/CustomEvent.java
org.eclipse.linuxtools.tmf.ui/src/org/eclipse/linuxtools/tmf/ui/parsers/custom/CustomXmlEvent.java

index 92a7b42fb4d3c80d64f3970c3ef7916926686a92..4df4f1b739e1e185a3d648a490caa0544c9c269e 100644 (file)
@@ -52,11 +52,11 @@ public class LTTngExperiment<T extends TmfEvent> extends TmfExperiment<T> {
      * @param epoch
      * @param indexPageSize
      */
-    public LTTngExperiment(Class<T> type, String id, ITmfTrace<T>[] traces, TmfTimestamp epoch, int indexPageSize) {
+    public LTTngExperiment(Class<T> type, String id, ITmfTrace<T>[] traces, ITmfTimestamp epoch, int indexPageSize) {
         this(type, id, traces, TmfTimestamp.Zero, indexPageSize, false);
     }
 
-    public LTTngExperiment(Class<T> type, String id, ITmfTrace<T>[] traces, TmfTimestamp epoch, int indexPageSize, boolean preIndexExperiment) {
+    public LTTngExperiment(Class<T> type, String id, ITmfTrace<T>[] traces, ITmfTimestamp epoch, int indexPageSize, boolean preIndexExperiment) {
         super(type, id, traces, epoch, indexPageSize, preIndexExperiment);
     }
 
index a84447f52caf8641fdc60855a436a3e544b90090..9172ccada761e4ffbaf9b960e1daeaf092a0c109 100644 (file)
@@ -26,9 +26,9 @@ public class TmfTimestamp implements ITmfTimestamp {
     // ------------------------------------------------------------------------
 
     // The beginning and end of time
-    public static final TmfTimestamp BigBang   = new TmfTimestamp(Long.MIN_VALUE, Integer.MAX_VALUE, 0);
-    public static final TmfTimestamp BigCrunch = new TmfTimestamp(Long.MAX_VALUE, Integer.MAX_VALUE, 0);
-    public static final TmfTimestamp Zero      = new TmfTimestamp(0, 0, 0);
+    public static final ITmfTimestamp BigBang   = new TmfTimestamp(Long.MIN_VALUE, Integer.MAX_VALUE, 0);
+    public static final ITmfTimestamp BigCrunch = new TmfTimestamp(Long.MAX_VALUE, Integer.MAX_VALUE, 0);
+    public static final ITmfTimestamp Zero      = new TmfTimestamp(0, 0, 0);
 
     // ------------------------------------------------------------------------
     // Attributes
index 309f0d51dddeec0fe9de0b8bf6546f067f9d3d62..1a275f31cbaa60a67a2f7b5f22e94c24d5bb841c 100644 (file)
@@ -47,7 +47,7 @@ public class CustomEvent extends TmfEvent {
         fData = new HashMap<String, String>();\r
     }\r
 \r
-    public CustomEvent(CustomTraceDefinition definition, ITmfTrace<?> parentTrace, TmfTimestamp timestamp, String source, TmfEventType type, String reference) {\r
+    public CustomEvent(CustomTraceDefinition definition, ITmfTrace<?> parentTrace, ITmfTimestamp timestamp, String source, TmfEventType type, String reference) {\r
         super(parentTrace, timestamp, source, type, reference);\r
         fDefinition = definition;\r
         fData = new HashMap<String, String>();\r
index 3b61132bafa44fca506313a0b570102ad7a77a7e..fc7a783ef6ecc678d26b846df8ac845b0b3ab0c9 100644 (file)
@@ -12,9 +12,9 @@
 \r
 package org.eclipse.linuxtools.tmf.ui.parsers.custom;\r
 \r
+import org.eclipse.linuxtools.tmf.core.event.ITmfTimestamp;\r
 import org.eclipse.linuxtools.tmf.core.event.TmfEvent;\r
 import org.eclipse.linuxtools.tmf.core.event.TmfEventType;\r
-import org.eclipse.linuxtools.tmf.core.event.TmfTimestamp;\r
 import org.eclipse.linuxtools.tmf.core.trace.ITmfTrace;\r
 \r
 public class CustomXmlEvent extends CustomEvent {\r
@@ -28,7 +28,7 @@ public class CustomXmlEvent extends CustomEvent {
         super(definition, other);\r
     }\r
 \r
-    public CustomXmlEvent(CustomXmlTraceDefinition definition, ITmfTrace<?> parentTrace, TmfTimestamp timestamp, String source, TmfEventType type, String reference) {\r
+    public CustomXmlEvent(CustomXmlTraceDefinition definition, ITmfTrace<?> parentTrace, ITmfTimestamp timestamp, String source, TmfEventType type, String reference) {\r
         super(definition, parentTrace, timestamp, source, type, reference);\r
     }\r
 \r
This page took 0.060784 seconds and 5 git commands to generate.