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 / remote / ICommandResult.java
index b8c9bd4c451b7e963d5e38409107e93317965729..b64320a7fb800bb3fc5c0e67fb72b3ae0d400315 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.remote;
@@ -15,30 +15,35 @@ package org.eclipse.linuxtools.internal.lttng2.ui.views.control.remote;
  * <p>
  * Interface for providing command execution result.
  * </p>
- * 
+ *
  * @author Bernd Hufmann
  */
 public interface ICommandResult {
     /**
-     * The result of the command. 
-     * @return 0 if successful else >0 
+     * The result of the command.
+     *
+     * @return 0 if successful else >0
      */
-    public int getResult() ;
+    int getResult();
 
     /**
      * Sets the command result value.
+     *
      * @param result
+     *            The integer result to set
      */
-    public void setResult(int result);
+    void setResult(int result);
 
     /**
      * @return returns the command output.
      */
-    public String[] getOutput();
+    String[] getOutput();
 
     /**
      * Sets the command output.
+     *
      * @param output
+     *            The output (as an array of Strings) to assign
      */
-    public void setOutput(String[] output);
+    void setOutput(String[] output);
 }
\ No newline at end of file
This page took 0.025709 seconds and 5 git commands to generate.