lttng: Add a diagram showing the dependencies between plugins
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.core / src / org / eclipse / linuxtools / internal / lttng2 / core / control / model / IUstProviderInfo.java
index 1c5c86d897fb655232751de03445610a21a3eff4..403a8572bf5b1a388b4579a9a338ec4b2f8ba087 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,36 +17,36 @@ import java.util.List;
  * <p>
  * Interface for retrieval of UST provider information.
  * </p>
- * 
+ *
  * @author Bernd Hufmann
  */
 public interface IUstProviderInfo extends ITraceInfo {
-   
+
     /**
      * @return the process ID of the UST provider.
      */
-    public int getPid();
+    int getPid();
 
     /**
      * Sets the process ID of the UST provider to the given value.
      * @param pid - process ID to set
      */
-    public void setPid(int pid);
-    
+    void setPid(int pid);
+
     /**
      * @return all event information as array.
      */
-    public IBaseEventInfo[] getEvents();
-    
+    IBaseEventInfo[] getEvents();
+
     /**
      * Sets the event information specified by given list.
      * @param events - all event information to set.
      */
-    public void setEvents(List<IBaseEventInfo> events);
-    
+    void setEvents(List<IBaseEventInfo> events);
+
     /**
      * Adds a single event information.
      * @param event - event information to add.
      */
-    public void addEvent(IBaseEventInfo event);
+    void addEvent(IBaseEventInfo event);
 }
This page took 0.024815 seconds and 5 git commands to generate.