2010-10-26 Francois Chouinard <fchouinard@gmail.com> Contribution for Bug309042
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf / src / org / eclipse / linuxtools / tmf / component / TmfComponent.java
CommitLineData
8c8bf09f 1/*******************************************************************************
e31e01e8 2 * Copyright (c) 2009, 2010 Ericsson
8c8bf09f
ASL
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
13package org.eclipse.linuxtools.tmf.component;
14
8d2e2848 15import org.eclipse.linuxtools.tmf.signal.TmfSignal;
8c8bf09f
ASL
16import org.eclipse.linuxtools.tmf.signal.TmfSignalManager;
17
18/**
19 * <b><u>TmfComponent</u></b>
20 * <p>
e31e01e8
FC
21 * This is the base class of the TMF components.
22 * <p>
23 * Currently, it only addresses the inter-component signaling.
8c8bf09f
ASL
24 */
25public abstract class TmfComponent implements ITmfComponent {
26
ce785d7d 27 private String fName;
fc6ccf6f 28
e31e01e8
FC
29 // ------------------------------------------------------------------------
30 // Constructor
31 // ------------------------------------------------------------------------
32
fc6ccf6f
FC
33 public TmfComponent(String name) {
34 fName = name;
9b635e61 35// if (Tracer.isComponentTraced()) Tracer.traceComponent(this, "created");
2fb2eb37 36 TmfSignalManager.register(this);
e31e01e8 37 }
377f1ad8
WB
38
39 public TmfComponent(TmfComponent oldComponent) {
40 this.fName = oldComponent.fName;
e31e01e8 41
377f1ad8
WB
42 // Should we register? Probably not but I'm not quite sure what this does
43 //register();
44 }
45
ce785d7d
FC
46 /* (non-Javadoc)
47 * @see org.eclipse.linuxtools.tmf.component.ITmfComponent#getName()
48 */
49 protected void setName(String name) {
50 fName = name;
51 }
52
e31e01e8
FC
53 // ------------------------------------------------------------------------
54 // ITmfComponent
55 // ------------------------------------------------------------------------
56
57 /* (non-Javadoc)
2fb2eb37 58 * @see org.eclipse.linuxtools.tmf.component.ITmfComponent#getName()
e31e01e8 59 */
d4011df2 60 @Override
2fb2eb37
FC
61 public String getName() {
62 return fName;
8c8bf09f
ASL
63 }
64
e31e01e8 65 /* (non-Javadoc)
2fb2eb37 66 * @see org.eclipse.linuxtools.tmf.component.ITmfComponent#dispose()
e31e01e8 67 */
d4011df2 68 @Override
2fb2eb37 69 public void dispose() {
e31e01e8 70 TmfSignalManager.deregister(this);
9b635e61 71// if (Tracer.isComponentTraced()) Tracer.traceComponent(this, "terminated");
8c8bf09f
ASL
72 }
73
e31e01e8
FC
74 /* (non-Javadoc)
75 * @see org.eclipse.linuxtools.tmf.component.ITmfComponent#broadcast(org.eclipse.linuxtools.tmf.signal.TmfSignal)
76 */
d4011df2 77 @Override
e31e01e8 78 public void broadcast(TmfSignal signal) {
8d2e2848
FC
79 TmfSignalManager.dispatchSignal(signal);
80 }
e31e01e8 81
8c8bf09f 82}
This page took 0.031683 seconds and 5 git commands to generate.