tmf: Move timestamps to their own package
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / event / TmfEvent.java
index f48517446c50ddef7a5307f05be612c77451e5bd..218385ad010e2f80c43dfb7f3470b42b90014ecd 100644 (file)
@@ -14,6 +14,7 @@
 
 package org.eclipse.linuxtools.tmf.core.event;
 
+import org.eclipse.linuxtools.tmf.core.timestamp.ITmfTimestamp;
 import org.eclipse.linuxtools.tmf.core.trace.ITmfContext;
 import org.eclipse.linuxtools.tmf.core.trace.ITmfTrace;
 import org.eclipse.ui.views.properties.IPropertySource;
@@ -64,6 +65,7 @@ public class TmfEvent implements ITmfEvent {
      * @param type the event type
      * @param content the event content (payload)
      * @param reference the event reference
+     * @since 2.0
 
      */
     public TmfEvent(final ITmfTrace trace, final ITmfTimestamp timestamp, final String source,
@@ -82,6 +84,7 @@ public class TmfEvent implements ITmfEvent {
      * @param type the event type
      * @param content the event content (payload)
      * @param reference the event reference
+     * @since 2.0
      */
     public TmfEvent(final ITmfTrace trace, final long rank, final ITmfTimestamp timestamp, final String source,
             final ITmfEventType type, final ITmfEventField content, final String reference)
@@ -127,6 +130,9 @@ public class TmfEvent implements ITmfEvent {
         return fRank;
     }
 
+    /**
+     * @since 2.0
+     */
     @Override
     public ITmfTimestamp getTimestamp() {
         return fTimestamp;
This page took 0.023821 seconds and 5 git commands to generate.