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 / IBaseEventInfo.java
index cfca86ab932c0d4cf9d1eb56dcb41e73065357cd..6f1e6bc655840bbe1e15395e755fbf177d17e5e4 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.core.control.model;
 
@@ -25,64 +26,64 @@ public interface IBaseEventInfo extends ITraceInfo {
     /**
      * @return the trace event type
      */
-    public TraceEventType getEventType();
+    TraceEventType getEventType();
 
     /**
      * Sets the trace event type to the given type
      * @param type - type to set
      */
-    public void setEventType(TraceEventType type);
+    void setEventType(TraceEventType type);
 
     /**
      * Sets the trace event type to the type specified by the given name.
      * @param typeName - event type name
      */
-    public void setEventType(String typeName);
+    void setEventType(String typeName);
 
     /**
      * @return the trace event log level
      */
-    public TraceLogLevel getLogLevel();
+    TraceLogLevel getLogLevel();
 
     /**
      * Sets the trace event log level to the given level
      * @param level - event log level to set
      */
-    public void setLogLevel(TraceLogLevel level);
+    void setLogLevel(TraceLogLevel level);
 
     /**
      * Sets the trace event log level to the level specified by the given name.
      * @param levelName - event log level name
      */
-    public void setLogLevel(String levelName);
+    void setLogLevel(String levelName);
 
     /**
      * Returns the field information (if exists)
      * @return the field information or null
      */
-    public IFieldInfo[] getFields();
+    IFieldInfo[] getFields();
 
     /**
      * @param field The field to add
      */
-    public void addField(IFieldInfo field);
+    void addField(IFieldInfo field);
 
     /**
      * Sets the fields
      * @param fields The fields
      */
-    public void setFields(List<IFieldInfo> fields);
+    void setFields(List<IFieldInfo> fields);
 
     /**
      * Returns filter expression.
      * @return filter expression
      */
-    public String getFilterExpression();
+    String getFilterExpression();
 
     /**
      * Sets the filter expression.
      * @param filter The filter expression to set
      */
-    public void setFilterExpression(String filter);
+    void setFilterExpression(String filter);
 
 }
This page took 0.025436 seconds and 5 git commands to generate.