Integrate the TmfEvent+ITmfTimestamp API
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / uml2sd / TmfSyncSequenceDiagramEvent.java
index 4a16c780e03da06882ef22fcdea47c1a2004452e..6cba15e48785729aa5388fb0dcc03ee4b6ce413c 100644 (file)
@@ -11,8 +11,8 @@
  **********************************************************************/
 package org.eclipse.linuxtools.tmf.core.uml2sd;
 
+import org.eclipse.linuxtools.tmf.core.event.ITmfTimestamp;
 import org.eclipse.linuxtools.tmf.core.event.TmfEvent;
-import org.eclipse.linuxtools.tmf.core.event.TmfTimestamp;
 
 /**
  * <b><u>TmfSyncSequenceDiagramEvent</u></b>
@@ -25,7 +25,7 @@ public class TmfSyncSequenceDiagramEvent implements ITmfSyncSequenceDiagramEvent
     // ------------------------------------------------------------------------
     // Attributes
     // ------------------------------------------------------------------------
-    final protected TmfTimestamp fStartTime;
+    final protected ITmfTimestamp fStartTime;
     final protected String fSender;
     final protected String fReceiver;
     final protected String fName;
@@ -86,7 +86,7 @@ public class TmfSyncSequenceDiagramEvent implements ITmfSyncSequenceDiagramEvent
      * @see org.eclipse.linuxtools.tmf.uml2sd.ITmfSyncSequenceDiagramEvent#getStartTime()
      */
     @Override
-    public TmfTimestamp getStartTime() {
+    public ITmfTimestamp getStartTime() {
         return fStartTime;
     }
 }
This page took 0.02386 seconds and 5 git commands to generate.