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 c7907a6527a495f74a85ff0ee06e43c0540d2f34..06b4130aadb6daeaa28e5fa12f04be43723b0a41 100644 (file)
@@ -1,5 +1,5 @@
 /**********************************************************************
- * 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
@@ -8,6 +8,7 @@
  *
  * 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;
 
@@ -32,51 +33,51 @@ public interface IEnableUstEvents {
     /**
      * @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
      */
-    public String getWildcard();
+    String getWildcard();
 
     /**
      * @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();
+    String getLogLevelEventName();
 
     /**
      * @return a filter expression
      */
-    public String getFilterExpression();
+    String getFilterExpression();
 
-}
\ No newline at end of file
+}
This page took 0.026216 seconds and 5 git commands to generate.