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 / ISessionInfo.java
index 85462a231d215e91eb91b2d94554cfab2ffea45a..cf9d4d9c88f2cc17ac3eb1ebd9b937f7fdea80c7 100644 (file)
@@ -26,56 +26,56 @@ public interface ISessionInfo extends ITraceInfo {
     /**
      * @return the session state state (active or inactive).
      */
-    public TraceSessionState getSessionState();
+    TraceSessionState getSessionState();
     /**
      * Sets the session state  to the given value.
      * @param state - state to set.
      */
-    public void setSessionState(TraceSessionState state);
+    void setSessionState(TraceSessionState state);
 
     /**
      * Sets the event state to the value specified by the given name.
      * @param stateName - state to set.
      */
-    public void setSessionState(String stateName);
+    void setSessionState(String stateName);
 
     /**
      * @return path string where session is located.
      */
-    public String getSessionPath();
+    String getSessionPath();
 
     /**
      * Sets the path string (where session is located) to the given value.
      * @param path - session path to set.
      */
-    public void setSessionPath(String path);
+    void setSessionPath(String path);
 
     /**
      * @return all domain information as array.
      */
-    public IDomainInfo[] getDomains();
+    IDomainInfo[] getDomains();
 
     /**
      * Sets all domain information specified by given list.
      * @param domains - all domain information to set.
      */
-    public void setDomains(List<IDomainInfo> domains);
+    void setDomains(List<IDomainInfo> domains);
 
     /**
      * Adds a single domain information.
      * @param domainInfo domain information to add.
      */
-    public void addDomain(IDomainInfo domainInfo);
+    void addDomain(IDomainInfo domainInfo);
 
     /**
      * Returns if session is streamed over network
      * @return <code>true</code> if streamed over network else <code>false</code>
      */
-    public boolean isStreamedTrace();
+    boolean isStreamedTrace();
 
     /**
      * Sets whether the trace is streamed or not
      * @param isStreamedTrace <code>true</code> if streamed over network else <code>false</code>
      */
-    public void setStreamedTrace(boolean isStreamedTrace);
+    void setStreamedTrace(boolean isStreamedTrace);
 }
This page took 0.037908 seconds and 5 git commands to generate.