Various fixes following code review
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / core / ExecutionOccurrence.java
index 721274eb87e63eed4eed03c5a51c1f12fe186068..2c165b393285af49e01b69a0ac83b6dde707a044 100755 (executable)
@@ -13,7 +13,6 @@
 package org.eclipse.linuxtools.tmf.ui.views.uml2sd.core;
 
 import org.eclipse.linuxtools.tmf.core.event.ITmfTimestamp;
-import org.eclipse.linuxtools.tmf.core.event.TmfTimestamp;
 import org.eclipse.linuxtools.tmf.ui.views.uml2sd.drawings.IColor;
 import org.eclipse.linuxtools.tmf.ui.views.uml2sd.drawings.IGC;
 import org.eclipse.linuxtools.tmf.ui.views.uml2sd.drawings.IImage;
@@ -93,7 +92,7 @@ public class ExecutionOccurrence extends BasicExecutionOccurrence implements ITi
      * 
      * @param time the time when the execution occurrence starts
      */
-    public void setStartTime(TmfTimestamp time) {
+    public void setStartTime(ITmfTimestamp time) {
         startTime = time.clone();
         hasTime = true;
         if (lifeline != null) {
@@ -106,7 +105,7 @@ public class ExecutionOccurrence extends BasicExecutionOccurrence implements ITi
      * 
      * @param time the time when the execution occurrence ends
      */
-    public void setEndTime(TmfTimestamp time) {
+    public void setEndTime(ITmfTimestamp time) {
         endTime = time.clone();
         hasTime = true;
         if (lifeline != null) {
This page took 0.02465 seconds and 5 git commands to generate.