tmf: Update some Javadoc 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/**********************************************************************
df0b8ff4
BH
2 * Copyright (c) 2005, 2008 IBM Corporation and others.
3 * Copyright (c) 2011, 2012 Ericsson.
013a5f1c 4 *
73005152
BH
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
013a5f1c
AM
9 *
10 * Contributors:
73005152
BH
11 * IBM - Initial API and implementation
12 * Bernd Hufmann - Updated for TMF
13 **********************************************************************/
14package org.eclipse.linuxtools.tmf.ui.views.uml2sd.handlers;
15
16import org.eclipse.jface.action.Action;
8fd82db5 17import org.eclipse.linuxtools.internal.tmf.ui.Activator;
013a5f1c 18import org.eclipse.linuxtools.internal.tmf.ui.ITmfImageConstants;
73005152 19import org.eclipse.linuxtools.tmf.ui.views.uml2sd.SDView;
df0b8ff4 20import org.eclipse.linuxtools.tmf.ui.views.uml2sd.dialogs.PagesDialog;
73005152 21import org.eclipse.linuxtools.tmf.ui.views.uml2sd.handlers.provider.ISDAdvancedPagingProvider;
73005152
BH
22import org.eclipse.linuxtools.tmf.ui.views.uml2sd.util.SDMessages;
23
24/**
df0b8ff4 25 * Action class implementation for paging.
013a5f1c
AM
26 *
27 * @version 1.0
28 * @author Bernd Hufmann
73005152
BH
29 */
30public class OpenSDPagesDialog extends Action {
31
32 // ------------------------------------------------------------------------
df0b8ff4 33 // Constants
73005152 34 // ------------------------------------------------------------------------
df0b8ff4
BH
35 /**
36 * The action ID.
37 */
73005152 38 public static final String ID = "org.eclipse.linuxtools.tmf.ui.views.uml2sd.handlers.sdPaging"; //$NON-NLS-1$
013a5f1c 39
df0b8ff4
BH
40 // ------------------------------------------------------------------------
41 // Attributes
42 // ------------------------------------------------------------------------
43 /**
44 * The sequence diagram view reference
45 */
73005152 46 protected SDView fView;
df0b8ff4
BH
47 /**
48 * The advanced paging provider reference.
49 */
73005152
BH
50 protected ISDAdvancedPagingProvider fProvider;
51
52 // ------------------------------------------------------------------------
53 // Constructors
54 // ------------------------------------------------------------------------
55 /**
013a5f1c
AM
56 * Constructor
57 *
eb63f5ff 58 * @param view The view reference
73005152 59 */
eb63f5ff 60 public OpenSDPagesDialog(SDView view, ISDAdvancedPagingProvider provider) {
73005152 61 super(SDMessages._44);
8fd82db5 62 setImageDescriptor(Activator.getDefault().getImageDescripterFromPath(ITmfImageConstants.IMG_UI_GOTO_PAGE));
73005152 63 setId(ID);
eb63f5ff
BH
64 fView = view;
65 fProvider = provider;
73005152
BH
66 }
67
68 // ------------------------------------------------------------------------
69 // Operations
70 // ------------------------------------------------------------------------
71 /*
72 * (non-Javadoc)
73 * @see org.eclipse.jface.action.Action#run()
74 */
75 @Override
76 public void run() {
77 if (fView == null) {
78 return;
79 }
80 PagesDialog dialog = new PagesDialog(fView, fProvider);
81 dialog.open();
82 }
83}
This page took 0.033177 seconds and 5 git commands to generate.