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
CommitLineData
73005152 1/**********************************************************************
c8422608 2 * Copyright (c) 2005, 2012 IBM Corporation, Ericsson
73005152
BH
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
013a5f1c
AM
7 *
8 * Contributors:
c8422608
AM
9 * IBM - Initial API and implementation
10 * Bernd Hufmann - Updated for TMF
73005152 11 **********************************************************************/
c8422608 12
73005152
BH
13package org.eclipse.linuxtools.tmf.ui.views.uml2sd.handlers;
14
15import org.eclipse.jface.action.Action;
8fd82db5 16import org.eclipse.linuxtools.internal.tmf.ui.Activator;
013a5f1c 17import org.eclipse.linuxtools.internal.tmf.ui.ITmfImageConstants;
73005152 18import org.eclipse.linuxtools.tmf.ui.views.uml2sd.SDView;
df0b8ff4 19import org.eclipse.linuxtools.tmf.ui.views.uml2sd.dialogs.PagesDialog;
73005152 20import org.eclipse.linuxtools.tmf.ui.views.uml2sd.handlers.provider.ISDAdvancedPagingProvider;
73005152
BH
21import org.eclipse.linuxtools.tmf.ui.views.uml2sd.util.SDMessages;
22
23/**
df0b8ff4 24 * Action class implementation for paging.
013a5f1c
AM
25 *
26 * @version 1.0
27 * @author Bernd Hufmann
73005152
BH
28 */
29public class OpenSDPagesDialog extends Action {
30
31 // ------------------------------------------------------------------------
df0b8ff4 32 // Constants
73005152 33 // ------------------------------------------------------------------------
df0b8ff4
BH
34 /**
35 * The action ID.
36 */
73005152 37 public static final String ID = "org.eclipse.linuxtools.tmf.ui.views.uml2sd.handlers.sdPaging"; //$NON-NLS-1$
013a5f1c 38
df0b8ff4
BH
39 // ------------------------------------------------------------------------
40 // Attributes
41 // ------------------------------------------------------------------------
42 /**
43 * The sequence diagram view reference
44 */
73005152 45 protected SDView fView;
df0b8ff4
BH
46 /**
47 * The advanced paging provider reference.
48 */
73005152
BH
49 protected ISDAdvancedPagingProvider fProvider;
50
51 // ------------------------------------------------------------------------
52 // Constructors
53 // ------------------------------------------------------------------------
54 /**
013a5f1c
AM
55 * Constructor
56 *
a55887ca
AM
57 * @param view
58 * The view reference
59 * @param provider
60 * The provider
73005152 61 */
eb63f5ff 62 public OpenSDPagesDialog(SDView view, ISDAdvancedPagingProvider provider) {
73005152 63 super(SDMessages._44);
8fd82db5 64 setImageDescriptor(Activator.getDefault().getImageDescripterFromPath(ITmfImageConstants.IMG_UI_GOTO_PAGE));
73005152 65 setId(ID);
eb63f5ff
BH
66 fView = view;
67 fProvider = provider;
73005152
BH
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.038174 seconds and 5 git commands to generate.