tmf: Update copyright headers in tmf.ui
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / handlers / OpenSDPagesDialog.java
1 /**********************************************************************
2 * Copyright (c) 2005, 2012 IBM Corporation, Ericsson
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * IBM - Initial API and implementation
10 * Bernd Hufmann - Updated for TMF
11 **********************************************************************/
12
13 package org.eclipse.linuxtools.tmf.ui.views.uml2sd.handlers;
14
15 import org.eclipse.jface.action.Action;
16 import org.eclipse.linuxtools.internal.tmf.ui.Activator;
17 import org.eclipse.linuxtools.internal.tmf.ui.ITmfImageConstants;
18 import org.eclipse.linuxtools.tmf.ui.views.uml2sd.SDView;
19 import org.eclipse.linuxtools.tmf.ui.views.uml2sd.dialogs.PagesDialog;
20 import org.eclipse.linuxtools.tmf.ui.views.uml2sd.handlers.provider.ISDAdvancedPagingProvider;
21 import org.eclipse.linuxtools.tmf.ui.views.uml2sd.util.SDMessages;
22
23 /**
24 * Action class implementation for paging.
25 *
26 * @version 1.0
27 * @author Bernd Hufmann
28 */
29 public class OpenSDPagesDialog extends Action {
30
31 // ------------------------------------------------------------------------
32 // Constants
33 // ------------------------------------------------------------------------
34 /**
35 * The action ID.
36 */
37 public static final String ID = "org.eclipse.linuxtools.tmf.ui.views.uml2sd.handlers.sdPaging"; //$NON-NLS-1$
38
39 // ------------------------------------------------------------------------
40 // Attributes
41 // ------------------------------------------------------------------------
42 /**
43 * The sequence diagram view reference
44 */
45 protected SDView fView;
46 /**
47 * The advanced paging provider reference.
48 */
49 protected ISDAdvancedPagingProvider fProvider;
50
51 // ------------------------------------------------------------------------
52 // Constructors
53 // ------------------------------------------------------------------------
54 /**
55 * Constructor
56 *
57 * @param view
58 * The view reference
59 * @param provider
60 * The provider
61 */
62 public OpenSDPagesDialog(SDView view, ISDAdvancedPagingProvider provider) {
63 super(SDMessages._44);
64 setImageDescriptor(Activator.getDefault().getImageDescripterFromPath(ITmfImageConstants.IMG_UI_GOTO_PAGE));
65 setId(ID);
66 fView = view;
67 fProvider = provider;
68 }
69
70 // ------------------------------------------------------------------------
71 // Operations
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 PagesDialog dialog = new PagesDialog(fView, fProvider);
83 dialog.open();
84 }
85 }
This page took 0.039605 seconds and 6 git commands to generate.