Fix static analysis warnings for UML2SD
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / handlers / OpenSDPagesDialog.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.PagesDialog;
21 import org.eclipse.linuxtools.tmf.ui.views.uml2sd.handlers.provider.ISDAdvancedPagingProvider;
22 import org.eclipse.linuxtools.tmf.ui.views.uml2sd.util.SDMessages;
23
24 /**
25 * Action class implementation for paging.
26 */
27 public class OpenSDPagesDialog extends Action {
28
29 // ------------------------------------------------------------------------
30 // Constants
31 // ------------------------------------------------------------------------
32 /**
33 * The action ID.
34 */
35 public static final String ID = "org.eclipse.linuxtools.tmf.ui.views.uml2sd.handlers.sdPaging"; //$NON-NLS-1$
36
37 // ------------------------------------------------------------------------
38 // Attributes
39 // ------------------------------------------------------------------------
40 /**
41 * The sequence diagram view reference
42 */
43 protected SDView fView;
44 /**
45 * The advanced paging provider reference.
46 */
47 protected ISDAdvancedPagingProvider fProvider;
48
49 // ------------------------------------------------------------------------
50 // Constructors
51 // ------------------------------------------------------------------------
52 /**
53 * Constructor
54 *
55 * @param view The view reference
56 */
57 public OpenSDPagesDialog(SDView view, ISDAdvancedPagingProvider provider) {
58 super(SDMessages._44);
59 setImageDescriptor(TmfUiPlugin.getDefault().getImageDescripterFromPath(ITmfImageConstants.IMG_UI_GOTO_PAGE));
60 setId(ID);
61 fView = view;
62 fProvider = provider;
63 }
64
65 // ------------------------------------------------------------------------
66 // Operations
67 // ------------------------------------------------------------------------
68 /*
69 * (non-Javadoc)
70 * @see org.eclipse.jface.action.Action#run()
71 */
72 @Override
73 public void run() {
74 if (fView == null) {
75 return;
76 }
77 PagesDialog dialog = new PagesDialog(fView, fProvider);
78 dialog.open();
79 }
80 }
This page took 0.032064 seconds and 6 git commands to generate.