tmf/lttng: Remove unneeded (non-Javadoc) comments
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / TmfView.java
1 /*******************************************************************************
2 * Copyright (c) 2009, 2013 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 * Bernd Hufmann - Added possibility to pin view
12 *******************************************************************************/
13
14 package org.eclipse.linuxtools.tmf.ui.views;
15
16 import org.eclipse.jface.action.IToolBarManager;
17 import org.eclipse.jface.action.Separator;
18 import org.eclipse.linuxtools.tmf.core.component.ITmfComponent;
19 import org.eclipse.linuxtools.tmf.core.signal.TmfSignal;
20 import org.eclipse.linuxtools.tmf.core.signal.TmfSignalManager;
21 import org.eclipse.linuxtools.tmf.core.trace.ITmfTrace;
22 import org.eclipse.linuxtools.tmf.ui.editors.ITmfTraceEditor;
23 import org.eclipse.ui.IEditorPart;
24 import org.eclipse.ui.IWorkbenchActionConstants;
25 import org.eclipse.ui.part.ViewPart;
26
27 /**
28 * Basic abstract TMF view class implementation.
29 *
30 * It registers any sub class to the signal manager for receiving and sending
31 * TMF signals.
32 *
33 * @version 1.2
34 * @author Francois Chouinard
35 */
36 public abstract class TmfView extends ViewPart implements ITmfComponent {
37
38 private final String fName;
39 /**
40 * Action class for pinning of TmfView.
41 *
42 * @since 2.0
43 */
44 protected PinTmfViewAction fPinAction;
45
46 // ------------------------------------------------------------------------
47 // Constructor
48 // ------------------------------------------------------------------------
49
50 /**
51 * Constructor. Creates a TMF view and registers to the signal manager.
52 *
53 * @param viewName
54 * A view name
55 */
56 public TmfView(String viewName) {
57 super();
58 fName = viewName;
59 TmfSignalManager.register(this);
60 }
61
62 /**
63 * Disposes this view and de-registers itself from the signal manager
64 */
65 @Override
66 public void dispose() {
67 TmfSignalManager.deregister(this);
68 super.dispose();
69 }
70
71 // ------------------------------------------------------------------------
72 // ITmfComponent
73 // ------------------------------------------------------------------------
74
75 @Override
76 public String getName() {
77 return fName;
78 }
79
80 @Override
81 public void broadcast(TmfSignal signal) {
82 TmfSignalManager.dispatchSignal(signal);
83 }
84
85 // ------------------------------------------------------------------------
86 // View pinning support
87 // ------------------------------------------------------------------------
88
89 /**
90 * Returns whether the pin flag is set.
91 * For example, this flag can be used to ignore time synchronization signals from other TmfViews.
92 *
93 * @return pin flag
94 * @since 2.0
95 */
96 public boolean isPinned() {
97 return ((fPinAction != null) && (fPinAction.isChecked()));
98 }
99
100 /**
101 * Method adds a pin action to the TmfView. The pin action allows to toggle the <code>fIsPinned</code> flag.
102 * For example, this flag can be used to ignore time synchronization signals from other TmfViews.
103 *
104 * @since 2.0
105 */
106 protected void contributePinActionToToolBar() {
107 if (fPinAction == null) {
108 fPinAction = new PinTmfViewAction();
109
110 IToolBarManager toolBarManager = getViewSite().getActionBars()
111 .getToolBarManager();
112 toolBarManager.add(new Separator(IWorkbenchActionConstants.MB_ADDITIONS));
113 toolBarManager.add(fPinAction);
114 }
115 }
116
117 /**
118 * Get the currently selected trace, or 'null' if the active editor is not a
119 * TMF trace.
120 *
121 * @return The active trace, or 'null' if not a trace
122 * @since 2.0
123 */
124 public ITmfTrace getActiveTrace() {
125 IEditorPart editor = getSite().getPage().getActiveEditor();
126 if (editor instanceof ITmfTraceEditor) {
127 ITmfTrace trace = ((ITmfTraceEditor) editor).getTrace();
128 return trace;
129 }
130 return null;
131 }
132
133 }
This page took 0.033083 seconds and 5 git commands to generate.