Merge branch 'master' into lttng-luna
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / ctfadaptor / CtfTmfEventType.java
index c9ac13f471b0bd3f0325e7f1e63bb8636aab9b0b..585d30b3f990fc064651be2af890f841fbe79b05 100644 (file)
@@ -16,15 +16,22 @@ import org.eclipse.linuxtools.tmf.core.event.TmfEventType;
 import org.eclipse.linuxtools.tmf.core.event.TmfEventTypeManager;
 
 /**
+ * The CTF extension of the TMF event type
+ *
+ * @version 1.0
+ * @author Matthew khouzam
  */
 public class CtfTmfEventType extends TmfEventType {
 
     private static final String CONTEXT_ID = "Ctf Event"; //$NON-NLS-1$
+
     /**
      * Constructor for CtfTmfEventType.
-     * @param contextId String
-     * @param eventName String
-     * @param content ITmfEventField
+     *
+     * @param eventName
+     *            String
+     * @param content
+     *            ITmfEventField
      */
     public CtfTmfEventType(String eventName, ITmfEventField content) {
         super(CONTEXT_ID, eventName, content);
@@ -32,6 +39,7 @@ public class CtfTmfEventType extends TmfEventType {
 
     /**
      * Method toString.
+     *
      * @return String
      */
     @Override
@@ -41,7 +49,9 @@ public class CtfTmfEventType extends TmfEventType {
 
     /**
      * gets the event type for an event name
-     * @param eventName the event name
+     *
+     * @param eventName
+     *            the event name
      * @return the event type
      */
     public static CtfTmfEventType get(String eventName){
This page took 0.024317 seconds and 5 git commands to generate.