tmf: Update copyright headers in tmf.ui
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / handlers / NextPage.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
c8422608
AM
7 *
8 * Contributors:
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;
d34665f9 16import org.eclipse.linuxtools.internal.tmf.ui.ITmfImageConstants;
8fd82db5 17import org.eclipse.linuxtools.internal.tmf.ui.Activator;
73005152
BH
18import org.eclipse.linuxtools.tmf.ui.views.uml2sd.SDView;
19import org.eclipse.linuxtools.tmf.ui.views.uml2sd.util.SDMessages;
20
21/**
df0b8ff4 22 * Action class implementation to move the focus to the next page of the whole sequence diagram.
c8422608 23 *
df0b8ff4 24 * @version 1.0
73005152 25 * @author sveyrier
c8422608 26 *
73005152
BH
27 */
28public class NextPage extends Action {
29
30 // ------------------------------------------------------------------------
df0b8ff4 31 // Constants
73005152 32 // ------------------------------------------------------------------------
df0b8ff4
BH
33 /**
34 * The action ID.
35 */
73005152 36 public static final String ID = "org.eclipse.linuxtools.tmf.ui.views.uml2sd.handlers.nextpage"; //$NON-NLS-1$
c8422608 37
df0b8ff4
BH
38 // ------------------------------------------------------------------------
39 // Attributes
40 // ------------------------------------------------------------------------
41 /**
42 * The sequence diagram view reference.
43 */
73005152
BH
44 protected SDView fView = null;
45
46 // ------------------------------------------------------------------------
47 // Constructors
48 // ------------------------------------------------------------------------
df0b8ff4 49 /**
c8422608
AM
50 * Default constructor
51 *
eb63f5ff 52 * @param view the view reference
df0b8ff4 53 */
eb63f5ff 54 public NextPage(SDView view) {
73005152 55 super();
eb63f5ff 56 fView = view;
73005152
BH
57 setText(SDMessages._36);
58 setToolTipText(SDMessages._38);
c8422608 59 setId(ID);
8fd82db5 60 setImageDescriptor(Activator.getDefault().getImageDescripterFromPath(ITmfImageConstants.IMG_UI_NEXT_PAGE));
73005152
BH
61 }
62
63 // ------------------------------------------------------------------------
64 // Operations
65 // ------------------------------------------------------------------------
66 /*
67 * (non-Javadoc)
68 * @see org.eclipse.jface.action.Action#run()
69 */
70 @Override
71 public void run() {
72 if ((fView == null) || (fView.getSDWidget()) == null) {
73 return;
74 }
75 if (fView.getSDPagingProvider() != null) {
76 fView.getSDPagingProvider().nextPage();
77 }
78 fView.updateCoolBar();
79 fView.getSDWidget().redraw();
80 }
81}
This page took 0.040166 seconds and 5 git commands to generate.