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 / ICreateSessionDialog.java
index ef13775818a07171b79e3e97232479e378457149..141325fc9911ab95680ce7b2638588ddf3359572 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;
 
@@ -28,35 +29,35 @@ public interface ICreateSessionDialog {
     /**
      * @return the session name.
      */
-    public String getSessionName();
+    String getSessionName();
 
     /**
      * @return the session path (null for default path)
      */
-    public String getSessionPath();
+    String getSessionPath();
 
     /**
      * @return true for default location else false
      */
-    public boolean isDefaultSessionPath();
+    boolean isDefaultSessionPath();
 
     /**
      * Initializes the dialog box.
      * @param group - the session group
      */
-    public void initialize(TraceSessionGroup group);
+    void initialize(TraceSessionGroup group);
 
     /**
      * @return true if traces is to be streamed else false.
      */
-    public boolean isStreamedTrace();
+    boolean isStreamedTrace();
 
     /**
      * Get the network URL in case control and data is configured together otherwise null
      * If it returns a non-null value, getControlUrl() and getDataUrl() have to return null.
      * @return The network URL or null.
      */
-    public String getNetworkUrl();
+    String getNetworkUrl();
 
     /**
      * Get the control URL in case control and data is configured separately.
@@ -65,7 +66,7 @@ public interface ICreateSessionDialog {
      *
      * @return The control URL or null.
      */
-    public String getControlUrl();
+    String getControlUrl();
 
     /**
      * Get the data URL in case control and data is configured separately.
@@ -74,17 +75,7 @@ public interface ICreateSessionDialog {
      *
      * @return The data URL or null.
      */
-    public String getDataUrl();
-
-    /**
-     * @return for not activating a consumer for this session
-     */
-    public boolean isNoConsumer();
-
-    /**
-     * @return for disabling a consumer for this session
-     */
-    public boolean isDisableConsumer();
+    String getDataUrl();
 
     // ------------------------------------------------------------------------
     // Operations
This page took 0.024763 seconds and 5 git commands to generate.