lttng: fix sonar warnings about redundant modifier in interfaces
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.ui / src / org / eclipse / linuxtools / internal / lttng2 / ui / views / control / dialogs / IGetEventInfoDialog.java
index 42c6bef3aa5f6030f00fbc922be5c3e5860e1910..1325f42384c96cdbe700157f765d811e28ce7803 100644 (file)
@@ -1,13 +1,14 @@
 /**********************************************************************
- * 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;
 
@@ -15,37 +16,44 @@ import org.eclipse.linuxtools.internal.lttng2.ui.views.control.model.impl.TraceC
 import org.eclipse.linuxtools.internal.lttng2.ui.views.control.model.impl.TraceSessionComponent;
 
 /**
- * <b><u>IEnableEventsDialog</u></b>
  * <p>
  * Interface for a dialog box for collecting information about the events to enable.
  * </p>
+ *
+ * @author Bernd Hufmann
  */
 public interface IGetEventInfoDialog {
-    
+
     // ------------------------------------------------------------------------
     // Accessors
     // ------------------------------------------------------------------------
     /**
      * @return the session the events shall be enabled.
      */
-    public TraceSessionComponent getSession();
+    TraceSessionComponent getSession();
 
     /**
      * @return the channel the events shall be enabled. Null for default channel.
      */
-    public TraceChannelComponent getChannel();
-    
+    TraceChannelComponent getChannel();
+
     /**
      * Sets flag about domain.
      * @param isKernel - true for kernel, false for UST
      */
-    public void setIsKernel(boolean isKernel);
-    
+    void setIsKernel(boolean isKernel);
+
     /**
      * Sets available session.
      * @param sessions - a array of available sessions.
      */
-    public void setSessions(TraceSessionComponent[] sessions);
+    void setSessions(TraceSessionComponent[] sessions);
+
+    /**
+     * Returns the filter expression.
+     * @return the filter expression or null for no filtering
+     */
+    String getFilterExpression();
 
     // ------------------------------------------------------------------------
     // Operations
This page took 0.025417 seconds and 5 git commands to generate.