ss: Move plugins to Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / editors / TmfEditor.java
CommitLineData
be222f56 1/*******************************************************************************
d91063d0 2 * Copyright (c) 2010, 2014 Ericsson
be222f56
PT
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 * Patrick Tasse - Initial API and implementation
d91063d0 11 * Bernd Hufmann - Add interface for broadcasting signals asynchronously
be222f56
PT
12 *******************************************************************************/
13
14package org.eclipse.linuxtools.tmf.ui.editors;
15
16import org.eclipse.linuxtools.tmf.core.component.ITmfComponent;
17import org.eclipse.linuxtools.tmf.core.signal.TmfSignal;
18import org.eclipse.linuxtools.tmf.core.signal.TmfSignalManager;
19import org.eclipse.ui.part.EditorPart;
20
21/**
22 * The main editor abstract class for use in TMF.
23 *
24 * @version 1.0
25 * @author Patrick Tasse
26 */
27public abstract class TmfEditor extends EditorPart implements ITmfComponent {
28
29 private final String fName;
30
31 // ------------------------------------------------------------------------
32 // Constructor
33 // ------------------------------------------------------------------------
34
35 /**
36 * Default constructor
37 */
38 public TmfEditor() {
39 super();
40 fName = "TmfEditor"; //$NON-NLS-1$
41 TmfSignalManager.register(this);
42 }
43
44 @Override
45 public void dispose() {
46 TmfSignalManager.deregister(this);
47 super.dispose();
48 }
49
50 // ------------------------------------------------------------------------
51 // ITmfComponent
52 // ------------------------------------------------------------------------
53
54 @Override
d5efe032 55 public String getName() {
be222f56
PT
56 return fName;
57 }
58
59 @Override
d5efe032 60 public void broadcast(TmfSignal signal) {
be222f56
PT
61 TmfSignalManager.dispatchSignal(signal);
62 }
d91063d0
BH
63
64 /**
65 * @since 3.0
66 */
67 @Override
68 public void broadcastAsync(TmfSignal signal) {
69 TmfSignalManager.dispatchSignalAsync(signal);
70 }
be222f56 71}
This page took 0.04597 seconds and 5 git commands to generate.