lttng: Add a diagram showing the dependencies between plugins
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.core / src / org / eclipse / linuxtools / internal / lttng2 / core / control / model / TraceEnablement.java
index a8a50d1f2eb82cb9ec7f20713d4e70976a6b1407..c9eab3e097a8a22dd62828aa2769ed7c56b4344b 100644 (file)
@@ -1,12 +1,12 @@
 /**********************************************************************
  * Copyright (c) 2012 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;
@@ -15,7 +15,7 @@ package org.eclipse.linuxtools.internal.lttng2.core.control.model;
  * <p>
  * Enumeration for enabled/disabled states.
  * </p>
- * 
+ *
  * @author Bernd Hufmann
  */
 public enum TraceEnablement {
@@ -23,21 +23,23 @@ public enum TraceEnablement {
     // ------------------------------------------------------------------------
     // Enum definition
     // ------------------------------------------------------------------------
+    /** Tracing is disabled */
     DISABLED("disabled"), //$NON-NLS-1$
+    /** Tracing is enabled */
     ENABLED("enabled"); //$NON-NLS-1$
 
     // ------------------------------------------------------------------------
     // Attributes
     // ------------------------------------------------------------------------
     /**
-     * Name of enum  
+     * Name of enum
      */
     private final String fInName;
 
     // ------------------------------------------------------------------------
     // Constuctors
     // ------------------------------------------------------------------------
-    
+
     /**
      * Private constructor
      * @param name the name of state
@@ -55,5 +57,4 @@ public enum TraceEnablement {
     public String getInName() {
         return fInName;
     }
-};
-
+}
This page took 0.025356 seconds and 5 git commands to generate.