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 / IDomainInfo.java
index 02022c6b2323d4bb77b4496686177b2e9c2d4147..edb9de0aaf6869f7ba81217a8ebdf5843b41598f 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;
@@ -17,38 +17,38 @@ import java.util.List;
  * <p>
  * Interface for retrieval of trace domain information.
  * </p>
- * 
+ *
  * @author Bernd Hufmann
  */
 public interface IDomainInfo extends ITraceInfo {
-    
+
     /**
-     * @return information about all channels  
+     * @return information about all channels
      */
-    public IChannelInfo[] getChannels();
-    
+    IChannelInfo[] getChannels();
+
     /**
      * Sets the channel information specified by given list.
      * @param channels - all channel information to set.
      */
-    public void setChannels(List<IChannelInfo> channels);
-    
+    void setChannels(List<IChannelInfo> channels);
+
     /**
      * Adds a single channel information.
      * @param channel - channel information to add.
      */
-    public void addChannel(IChannelInfo channel);
-    
+    void addChannel(IChannelInfo channel);
+
     /**
      * @return true if domain is kernel, false for UST
      */
-    public boolean isKernel();
-    
+    boolean isKernel();
+
     /**
-     * Sets whether domain is  Kernel domain or UST 
+     * Sets whether domain is  Kernel domain or UST
      * @param isKernel true for kernel, false for UST
      */
-    public void setIsKernel(boolean isKernel);
+    void setIsKernel(boolean isKernel);
 
 
 }
This page took 0.02579 seconds and 5 git commands to generate.