Improve test cases, speed and accuracy.
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / handlers / OpenSDPagesDialog.java
CommitLineData
73005152
BH
1/**********************************************************************
2 * Copyright (c) 2005, 2008, 2011 IBM Corporation and others.
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 * $Id: OpenSDPagesDialog.java,v 1.4 2008/01/24 02:28:52 apnan Exp $
8 *
9 * Contributors:
10 * IBM - Initial API and implementation
11 * Bernd Hufmann - Updated for TMF
12 **********************************************************************/
13package org.eclipse.linuxtools.tmf.ui.views.uml2sd.handlers;
14
15import org.eclipse.jface.action.Action;
d34665f9
FC
16import org.eclipse.linuxtools.internal.tmf.ui.ITmfImageConstants;
17import org.eclipse.linuxtools.internal.tmf.ui.TmfUiPlugin;
73005152
BH
18import org.eclipse.linuxtools.tmf.ui.views.uml2sd.SDView;
19import org.eclipse.linuxtools.tmf.ui.views.uml2sd.handlers.provider.ISDAdvancedPagingProvider;
20import org.eclipse.linuxtools.tmf.ui.views.uml2sd.handlers.widgets.PagesDialog;
21import org.eclipse.linuxtools.tmf.ui.views.uml2sd.util.SDMessages;
22
23/**
24 * Action delegate for 'Filter' on a message
25 */
26public class OpenSDPagesDialog extends Action {
27
28 // ------------------------------------------------------------------------
29 // Attributes
30 // ------------------------------------------------------------------------
31 public static final String ID = "org.eclipse.linuxtools.tmf.ui.views.uml2sd.handlers.sdPaging"; //$NON-NLS-1$
32
33 protected SDView fView;
34 protected ISDAdvancedPagingProvider fProvider;
35
36 // ------------------------------------------------------------------------
37 // Constructors
38 // ------------------------------------------------------------------------
39 /**
40 * @param view_
41 */
42 public OpenSDPagesDialog(SDView view_, ISDAdvancedPagingProvider provider_) {
43 super(SDMessages._44);
44 setImageDescriptor(TmfUiPlugin.getDefault().getImageDescripterFromPath(ITmfImageConstants.IMG_UI_GOTO_PAGE));
45 setId(ID);
46 fView = view_;
47 fProvider = provider_;
48 }
49
50 // ------------------------------------------------------------------------
51 // Operations
52 // ------------------------------------------------------------------------
53 /*
54 * (non-Javadoc)
55 * @see org.eclipse.jface.action.Action#run()
56 */
57 @Override
58 public void run() {
59 if (fView == null) {
60 return;
61 }
62 PagesDialog dialog = new PagesDialog(fView, fProvider);
63 dialog.open();
64 }
65}
This page took 0.02945 seconds and 5 git commands to generate.