tmf: fix sonar warnings about redundant modifier in interfaces
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / component / ITmfComponent.java
index e9040500ad0c67373d4e7e803821cdbea594ff4a..1d090fb401b3c499444d5d82ccaaf3c60cd0fe66 100644 (file)
@@ -1,11 +1,11 @@
 /*******************************************************************************
- * Copyright (c) 2009, 2010 Ericsson
- * 
+ * Copyright (c) 2009, 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:
  *   Francois Chouinard - Initial API and implementation
  *******************************************************************************/
@@ -15,29 +15,32 @@ package org.eclipse.linuxtools.tmf.core.component;
 import org.eclipse.linuxtools.tmf.core.signal.TmfSignal;
 
 /**
- * <b><u>ITmfComponent</u></b>
- * <p>
  * This is the basic interface of all the TMF components.
  * <p>
- *  Currently, it only addresses the inter-component signaling.
+ * Currently, it only addresses the inter-component signalling.
+ *
+ * @version 1.0
+ * @author Francois Chouinard
+ *
+ * @see TmfComponent
  */
 public interface ITmfComponent {
 
-       /**
-        * Get the component ID
-        */
-       public String getName();
+    /**
+     * @return the component ID (display name)
+     */
+    String getName();
 
-       /**
-        * Dispose of the component
-        */
-       public void dispose();
+    /**
+     * Dispose of the component
+     */
+    void dispose();
 
-       /**
-        * Broadcast a signal to all the interested listeners.
-        * 
-        * @param signal
-        */
-       public void broadcast(TmfSignal signal);
+    /**
+     * Propagate a signal to all the interested listeners.
+     *
+     * @param signal the signal to broadcast
+     */
+    void broadcast(TmfSignal signal);
 
 }
This page took 0.025111 seconds and 5 git commands to generate.