lttng: fix sonar warnings about redundant modifier in interfaces
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.core / src / org / eclipse / linuxtools / internal / lttng2 / core / control / model / IProbeEventInfo.java
index ec0b3f2b897d43dfdf4f96d8ca4443f42695b170..4d132a5e6fafea376dc07d8c65ae473623b01b44 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.core.control.model;
@@ -15,7 +15,7 @@ package org.eclipse.linuxtools.internal.lttng2.core.control.model;
  * <p>
  * Interface for retrieval of probe event information.
  * </p>
- * 
+ *
  * @author Bernd Hufmann
  */
 public interface IProbeEventInfo extends IEventInfo {
@@ -23,33 +23,33 @@ public interface IProbeEventInfo extends IEventInfo {
     /**
      * @return the address of the probe. (null if not used)
      */
-    public String getAddress();
-    
+    String getAddress();
+
     /**
      * Sets the address of the probe.
      * @param address - a address (null if not used)
      */
-    public void setAddress(String address);
-    
+    void setAddress(String address);
+
     /**
      * @return the offset applied to the symbol (null if not used).
      */
-    public String getOffset();
-    
+    String getOffset();
+
     /**
      * Sets the offset applied to the symbol.
      * @param offset - a offset ((null if not used)
      */
-    public void setOffset(String offset);
+    void setOffset(String offset);
 
     /**
      * @return the symbol name. ((null if not used))
      */
-    public String getSymbol();
-    
+    String getSymbol();
+
     /**
      * Sets the symbol name.
      * @param symbol - a symbol name ((null if not used))
      */
-    public void setSymbol(String symbol);
+    void setSymbol(String symbol);
 }
This page took 0.024423 seconds and 5 git commands to generate.