tmf: Continue upating the Javadoc 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, 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.Activator;
18 import org.eclipse.linuxtools.internal.tmf.ui.ITmfImageConstants;
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 * @version 1.0
28 * @author Bernd Hufmann
29 */
30 public class OpenSDPagesDialog 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.sdPaging"; //$NON-NLS-1$
39
40 // ------------------------------------------------------------------------
41 // Attributes
42 // ------------------------------------------------------------------------
43 /**
44 * The sequence diagram view reference
45 */
46 protected SDView fView;
47 /**
48 * The advanced paging provider reference.
49 */
50 protected ISDAdvancedPagingProvider fProvider;
51
52 // ------------------------------------------------------------------------
53 // Constructors
54 // ------------------------------------------------------------------------
55 /**
56 * Constructor
57 *
58 * @param view
59 * The view reference
60 * @param provider
61 * The provider
62 */
63 public OpenSDPagesDialog(SDView view, ISDAdvancedPagingProvider provider) {
64 super(SDMessages._44);
65 setImageDescriptor(Activator.getDefault().getImageDescripterFromPath(ITmfImageConstants.IMG_UI_GOTO_PAGE));
66 setId(ID);
67 fView = view;
68 fProvider = provider;
69 }
70
71 // ------------------------------------------------------------------------
72 // Operations
73 // ------------------------------------------------------------------------
74 /*
75 * (non-Javadoc)
76 * @see org.eclipse.jface.action.Action#run()
77 */
78 @Override
79 public void run() {
80 if (fView == null) {
81 return;
82 }
83 PagesDialog dialog = new PagesDialog(fView, fProvider);
84 dialog.open();
85 }
86 }
This page took 0.035625 seconds and 6 git commands to generate.