tmf/lttng: Remove unneeded (non-Javadoc) comments
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / handlers / MoveSDUp.java
CommitLineData
73005152 1/**********************************************************************
11252342 2 * Copyright (c) 2005, 2013 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;
16import org.eclipse.linuxtools.tmf.ui.views.uml2sd.SDView;
17import org.eclipse.linuxtools.tmf.ui.views.uml2sd.SDWidget;
18
19/**
013a5f1c
AM
20 * Action class implementation to move up in the sequence diagram view within a
21 * page.
22 *
23 * @version 1.0
73005152 24 * @author sveyrier
73005152
BH
25 */
26public class MoveSDUp extends Action {
27
28 // ------------------------------------------------------------------------
df0b8ff4 29 // Constants
73005152 30 // ------------------------------------------------------------------------
df0b8ff4
BH
31 /**
32 * The action ID.
33 */
73005152 34 public final static String ID = "org.eclipse.linuxtools.tmf.ui.views.uml2sd.handlers.MoveSDUp"; //$NON-NLS-1$
013a5f1c 35
df0b8ff4
BH
36 // ------------------------------------------------------------------------
37 // Attributes
38 // ------------------------------------------------------------------------
39 /**
40 * The sequence diagram view reference.
41 */
73005152
BH
42 protected SDView fView = null;
43
44 // ------------------------------------------------------------------------
45 // Constructors
46 // ------------------------------------------------------------------------
df0b8ff4
BH
47 /**
48 * Default constructor
49 */
73005152
BH
50 public MoveSDUp() {
51 this(null);
52 }
53
df0b8ff4
BH
54 /**
55 * Constructor
013a5f1c 56 *
df0b8ff4
BH
57 * @param view a sequence diagram view reference
58 */
73005152
BH
59 public MoveSDUp(SDView view) {
60 super();
61 setId(ID);
62 setActionDefinitionId(ID);
abbdd66a 63 fView = view;
73005152
BH
64 }
65
66 // ------------------------------------------------------------------------
df0b8ff4 67 // Methods
73005152 68 // ------------------------------------------------------------------------
11252342 69
73005152
BH
70 @Override
71 public void run() {
72 if (fView == null) {
73 return;
74 }
abbdd66a 75 SDWidget viewer = fView.getSDWidget();
df0b8ff4 76
73005152
BH
77 if (viewer != null) {
78 viewer.scrollBy(0, -viewer.getVisibleHeight());
79 }
80 }
81
82 /**
83 * Sets the active SD view.
84 * @param view The SD view.
85 */
86 public void setView(SDView view) {
87 fView = view;
88 }
89}
This page took 0.039763 seconds and 5 git commands to generate.