lttng: fix property display of function probe event Bug 419454
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.core / src / org / eclipse / linuxtools / internal / lttng2 / core / control / model / TraceEventType.java
index 477e2269366bf2178cc66fe73f913c393a0dd2bb..7f0d7b18627339adb606db00528b52579ff7c8af 100644 (file)
@@ -1,26 +1,33 @@
 /**********************************************************************
- * Copyright (c) 2012 Ericsson
- * 
+ * Copyright (c) 2012, 2013 Ericsson
+ *
  * All rights reserved. This program and the accompanying materials are
  * made available under the terms of the Eclipse Public License v1.0 which
  * accompanies this distribution, and is available at
  * http://www.eclipse.org/legal/epl-v10.html
- * 
- * Contributors: 
+ *
+ * Contributors:
  *   Bernd Hufmann - Initial API and implementation
  **********************************************************************/
 package org.eclipse.linuxtools.internal.lttng2.core.control.model;
 
 /**
- * <b><u>TraceEventType</u></b>
  * <p>
  * Trace event type enumeration.
  * </p>
+ *
+ * @author Bernd Hufmann
  */
-public enum TraceEventType { 
+public enum TraceEventType {
+    /** Event type: tracepoint */
     TRACEPOINT("tracepoint"), //$NON-NLS-1$
+    /** Event type: syscall */
     SYSCALL("syscall"), //$NON-NLS-1$
+    /** Event type: probe */
     PROBE("probe"),  //$NON-NLS-1$
+    /** Event type: function */
+    FUNCTION("function"), //$NON-NLS-1$
+    /** Event type unknown */
     UNKNOWN("unknown"); //$NON-NLS-1$
 
     private final String fInName;
@@ -29,8 +36,13 @@ public enum TraceEventType {
         fInName = name;
     }
 
+    /**
+     * Get the type's name
+     *
+     * @return The type's name
+     */
     public String getInName() {
         return fInName;
     }
-};
+}
 
This page took 0.025722 seconds and 5 git commands to generate.