Fix static analysis warnings for UML2SD
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / handlers / OpenSDFiltersDialog.java
1 /**********************************************************************
2 * Copyright (c) 2005, 2008 IBM Corporation and others.
3 * Copyright (c) 2011, 2012 Ericsson.
4 *
5 * All rights reserved. This program and the accompanying materials
6 * are made available under the terms of the Eclipse Public License v1.0
7 * which accompanies this distribution, and is available at
8 * http://www.eclipse.org/legal/epl-v10.html
9 *
10 * Contributors:
11 * IBM - Initial API and implementation
12 * Bernd Hufmann - Updated for TMF
13 **********************************************************************/
14 package org.eclipse.linuxtools.tmf.ui.views.uml2sd.handlers;
15
16 import org.eclipse.jface.action.Action;
17 import org.eclipse.linuxtools.internal.tmf.ui.ITmfImageConstants;
18 import org.eclipse.linuxtools.internal.tmf.ui.TmfUiPlugin;
19 import org.eclipse.linuxtools.tmf.ui.views.uml2sd.SDView;
20 import org.eclipse.linuxtools.tmf.ui.views.uml2sd.dialogs.FilterListDialog;
21 import org.eclipse.linuxtools.tmf.ui.views.uml2sd.handlers.provider.ISDFilterProvider;
22 import org.eclipse.linuxtools.tmf.ui.views.uml2sd.util.SDMessages;
23
24 /**
25 * Action class implementation for 'Filtering' of messages/lifelines.
26 *
27 * @version 1.0
28 * @author sveyrier
29 */
30 public class OpenSDFiltersDialog extends Action {
31
32 // ------------------------------------------------------------------------
33 // Constants
34 // ------------------------------------------------------------------------
35 /**
36 * The action ID.
37 */
38 public static final String ID = "org.eclipse.linuxtools.tmf.ui.views.uml2sd.handlers.sdFilters"; //$NON-NLS-1$
39
40 // ------------------------------------------------------------------------
41 // Attributes
42 // ------------------------------------------------------------------------
43 /**
44 * The sequence diagram view reference
45 */
46 protected SDView fView;
47
48 /**
49 * The filter provider reference
50 */
51 protected ISDFilterProvider fProvider;
52
53 // ------------------------------------------------------------------------
54 // Constructors
55 // ------------------------------------------------------------------------
56 /**
57 * Constructor
58 *
59 * @param theView The view reference
60 */
61 public OpenSDFiltersDialog(SDView view, ISDFilterProvider provider) {
62 super(SDMessages._43);
63 setImageDescriptor(TmfUiPlugin.getDefault().getImageDescripterFromPath(ITmfImageConstants.IMG_UI_FILTERS));
64 setId(ID);
65 setToolTipText(SDMessages._43);
66 fView = view;
67 fProvider = provider;
68 }
69
70 // ------------------------------------------------------------------------
71 // Methods
72 // ------------------------------------------------------------------------
73 /*
74 * (non-Javadoc)
75 * @see org.eclipse.jface.action.Action#run()
76 */
77 @Override
78 public void run() {
79 if (fView == null) {
80 return;
81 }
82 FilterListDialog dialog = new FilterListDialog(fView, fProvider);
83 dialog.open();
84 }
85 }
This page took 0.032014 seconds and 5 git commands to generate.