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 / IImportDialog.java
index 66c7ea7602351d139f8a92cc30f803edc6f3aefa..a642d9661d4d5de1d9aa64bf11c30e40a5684e0d 100644 (file)
@@ -1,12 +1,12 @@
 /**********************************************************************
- * 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
  **********************************************************************/
 package org.eclipse.linuxtools.internal.lttng2.ui.views.control.dialogs;
@@ -17,32 +17,33 @@ import org.eclipse.core.resources.IProject;
 import org.eclipse.linuxtools.internal.lttng2.ui.views.control.model.impl.TraceSessionComponent;
 
 /**
- * <b><u>IImportDialog</u></b>
  * <p>
  * Interface for import traces dialog.
  * </p>
+ *
+ * @author Bernd Hufmann
  */
 public interface IImportDialog {
-    
+
     // ------------------------------------------------------------------------
     // Accessors
     // ------------------------------------------------------------------------
     /**
      * @return a list of trace paths to import.
      */
-    public List<ImportFileInfo> getTracePathes();
+    List<ImportFileInfo> getTracePathes();
 
     /**
      * @return the project to import the traces to
      */
-    public IProject getProject();
-    
+    IProject getProject();
+
     /**
      * Sets the session containing the traces to import
-     * @param session 
+     * @param session The trace session
      */
-    public void setSession(TraceSessionComponent session);
-    
+    void setSession(TraceSessionComponent session);
+
     // ------------------------------------------------------------------------
     // Operations
     // ------------------------------------------------------------------------
This page took 0.025767 seconds and 5 git commands to generate.