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 / IEventInfo.java
index e26a51c656d1a808c8f72bb217bf36cfb506ba5e..359a0f24abdba7dc3df735403458b12f834ff386 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 trace event information.
  * </p>
- * 
+ *
  * @author Bernd Hufmann
  */
 public interface IEventInfo extends IBaseEventInfo {
@@ -23,18 +23,18 @@ public interface IEventInfo extends IBaseEventInfo {
     /**
      * @return the event state (enabled or disabled).
      */
-    public TraceEnablement getState();
-    
+    TraceEnablement getState();
+
     /**
      * Sets the event state (enablement) to the given value.
      * @param state - state to set.
      */
-    public void setState(TraceEnablement state);
-    
+    void setState(TraceEnablement state);
+
     /**
      * Sets the event state (enablement) to the value specified by the given name.
      * @param stateName - state to set.
      */
-    public void setState(String stateName);
-    
+    void setState(String stateName);
+
 }
This page took 0.026839 seconds and 5 git commands to generate.