lttng: Fix Javadoc in lttng2.core
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.core / src / org / eclipse / linuxtools / internal / lttng2 / core / control / model / ISessionInfo.java
index 3850c601027659afd74bf8ee0768f2c279891e45..dbbfb566ee4fb6d0d32166e2804cb9387ecb82cb 100644 (file)
@@ -1,12 +1,12 @@
 /**********************************************************************
  * Copyright (c) 2012 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,7 +17,7 @@ import java.util.List;
  * <p>
  * Interface for retrieval of trace session information.
  * </p>
- * 
+ *
  * @author Bernd Hufmann
  */
 public interface ISessionInfo extends ITraceInfo {
@@ -31,38 +31,38 @@ public interface ISessionInfo extends ITraceInfo {
      * @param state - state to set.
      */
     public 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);
-    
+
     /**
      * @return path string where session is located.
      */
     public 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);
-    
+
     /**
      * @return all domain information as array.
      */
     public IDomainInfo[] getDomains();
-    
+
     /**
      * Sets all domain information specified by given list.
      * @param domains - all domain information to set.
      */
     public void setDomains(List<IDomainInfo> domains);
-    
+
     /**
      * Adds a single domain information.
-     * @param domain - domain information to add.
+     * @param domainInfo domain information to add.
      */
     public void addDomain(IDomainInfo domainInfo);
 }
This page took 0.025559 seconds and 5 git commands to generate.