lttng: Add a diagram showing the dependencies between plugins
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.ui / src / org / eclipse / linuxtools / internal / lttng2 / ui / views / control / dialogs / IEnableUstEvents.java
index 42c1f024df7f832c9a790cd3feac928ec3b5d6c9..06b4130aadb6daeaa28e5fa12f04be43723b0a41 100644 (file)
@@ -1,76 +1,83 @@
 /**********************************************************************
- * 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
+ *   Bernd Hufmann - Updated for support of LTTng Tools 2.1
  **********************************************************************/
 package org.eclipse.linuxtools.internal.lttng2.ui.views.control.dialogs;
 
 import java.util.List;
 
-import org.eclipse.linuxtools.internal.lttng2.ui.views.control.model.LogLevelType;
-import org.eclipse.linuxtools.internal.lttng2.ui.views.control.model.TraceLogLevel;
+import org.eclipse.linuxtools.internal.lttng2.core.control.model.LogLevelType;
+import org.eclipse.linuxtools.internal.lttng2.core.control.model.TraceLogLevel;
 
 /**
- * <b><u>IEnableKernelEvents</u></b>
  * <p>
  * Interface for providing information about UST events to be enabled.
  * </p>
+ *
+ * @author Bernd Hufmann
  */
 public interface IEnableUstEvents {
 
     // ------------------------------------------------------------------------
     // Accessors
     // ------------------------------------------------------------------------
+
     /**
      * @return a flag whether the tracepoints shall be configured.
      */
-    public boolean isTracepoints();
-    
+    boolean isTracepoints();
+
     /**
      * @return a flag indicating whether all tracepoints shall be enabled or not.
      */
-    public boolean isAllTracePoints();
+    boolean isAllTracePoints();
 
     /**
      * @return a list of event names to be enabled.
      */
-    public List<String> getEventNames();
+    List<String> getEventNames();
 
     /**
      * @return a flag whether events using wildcards should be enabled
      */
-    public boolean isWildcard();
+    boolean isWildcard();
 
     /**
-     * @return a wildcard 
+     * @return a wildcard
      */
-    public String getWildcard();
+    String getWildcard();
 
     /**
-     * @return a flag whether events using log levels should be enabled 
+     * @return a flag whether events using log levels should be enabled
      */
-    public boolean isLogLevel();
+    boolean isLogLevel();
 
     /**
      * @return a log level type (loglevel or loglevel-only)
      */
-    public LogLevelType getLogLevelType();
-    
+    LogLevelType getLogLevelType();
+
     /**
      * @return a log level
      */
-    public TraceLogLevel getLogLevel();
+    TraceLogLevel getLogLevel();
 
     /**
      * @return a event name for the log level enable action
      */
-    public String getLogLevelEventName();
-   
-}
\ No newline at end of file
+    String getLogLevelEventName();
+
+    /**
+     * @return a filter expression
+     */
+    String getFilterExpression();
+
+}
This page took 0.025926 seconds and 5 git commands to generate.