[Bug292967] Implemented items [1] and [2] of of request coalescing. Augmented unit...
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf / src / org / eclipse / linuxtools / tmf / component / TmfComponent.java
1 /*******************************************************************************
2 * Copyright (c) 2009, 2010 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Francois Chouinard - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.linuxtools.tmf.component;
14
15 import org.eclipse.linuxtools.tmf.signal.TmfSignal;
16 import org.eclipse.linuxtools.tmf.signal.TmfSignalManager;
17
18 /**
19 * <b><u>TmfComponent</u></b>
20 * <p>
21 * This is the base class of the TMF components.
22 * <p>
23 * Currently, it only addresses the inter-component signaling.
24 */
25 public abstract class TmfComponent implements ITmfComponent {
26
27 private final String fName;
28
29 // ------------------------------------------------------------------------
30 // Constructor
31 // ------------------------------------------------------------------------
32
33 public TmfComponent(String name) {
34 fName = name;
35 register();
36 }
37
38 // ------------------------------------------------------------------------
39 // ITmfComponent
40 // ------------------------------------------------------------------------
41
42 public String getName() {
43 return fName;
44 }
45
46 /* (non-Javadoc)
47 * @see org.eclipse.linuxtools.tmf.component.ITmfComponent#register()
48 */
49 public void register() {
50 TmfSignalManager.register(this);
51 }
52
53 /* (non-Javadoc)
54 * @see org.eclipse.linuxtools.tmf.component.ITmfComponent#deregister()
55 */
56 public void deregister() {
57 TmfSignalManager.deregister(this);
58 }
59
60 /* (non-Javadoc)
61 * @see org.eclipse.linuxtools.tmf.component.ITmfComponent#broadcast(org.eclipse.linuxtools.tmf.signal.TmfSignal)
62 */
63 public void broadcast(TmfSignal signal) {
64 TmfSignalManager.dispatchSignal(signal);
65 }
66
67 }
This page took 0.032865 seconds and 6 git commands to generate.