tmf: API clean-up of sequence diagram framework
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / handlers / NextPage.java
index 33c660319d28a0b2f702ff2aee4daff3bf97bfa7..3e533f0c3c988512658b9e4f9267bc10125db616 100755 (executable)
@@ -1,64 +1,68 @@
 /**********************************************************************
- * Copyright (c) 2005, 2008, 2011 IBM Corporation and others.
+ * Copyright (c) 2005, 2013 IBM Corporation, Ericsson
  * All rights reserved.   This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License v1.0
  * which accompanies this distribution, and is available at
  * http://www.eclipse.org/legal/epl-v10.html
- * $Id: NextPage.java,v 1.3 2008/01/24 02:28:52 apnan Exp $
- * 
- * Contributors: 
- * IBM - Initial API and implementation
- * Bernd Hufmann - Updated for TMF
+ *
+ * Contributors:
+ *     IBM - Initial API and implementation
+ *     Bernd Hufmann - Updated for TMF
  **********************************************************************/
+
 package org.eclipse.linuxtools.tmf.ui.views.uml2sd.handlers;
 
-import org.eclipse.jface.action.Action;
+import org.eclipse.linuxtools.internal.tmf.ui.Activator;
 import org.eclipse.linuxtools.internal.tmf.ui.ITmfImageConstants;
-import org.eclipse.linuxtools.internal.tmf.ui.TmfUiPlugin;
 import org.eclipse.linuxtools.tmf.ui.views.uml2sd.SDView;
-import org.eclipse.linuxtools.tmf.ui.views.uml2sd.util.SDMessages;
+import org.eclipse.linuxtools.tmf.ui.views.uml2sd.util.Messages;
 
 /**
+ * Action class implementation to move the focus to the next page of the whole sequence diagram.
+ *
+ * @version 1.0
  * @author sveyrier
- * 
+ *
  */
-public class NextPage extends Action {
+public class NextPage extends BaseSDAction {
 
     // ------------------------------------------------------------------------
-    // Attributes
+    // Constants
     // ------------------------------------------------------------------------
+    /**
+     * The action ID.
+     */
     public static final String ID = "org.eclipse.linuxtools.tmf.ui.views.uml2sd.handlers.nextpage"; //$NON-NLS-1$
-    
-    protected SDView fView = null;
 
     // ------------------------------------------------------------------------
     // Constructors
     // ------------------------------------------------------------------------
-    public NextPage(SDView theView) {
-        super();
-        fView = theView;
-        setText(SDMessages._36);
-        setToolTipText(SDMessages._38);
-        setId(ID); 
-        setImageDescriptor(TmfUiPlugin.getDefault().getImageDescripterFromPath(ITmfImageConstants.IMG_UI_NEXT_PAGE));
+    /**
+     * Default constructor
+     *
+     * @param view the view reference
+     */
+    public NextPage(SDView view) {
+        super(view);
+        setText(Messages.SequenceDiagram_NextPage);
+        setToolTipText(Messages.SequenceDiagram_GoToNextPage);
+        setId(ID);
+        setImageDescriptor(Activator.getDefault().getImageDescripterFromPath(ITmfImageConstants.IMG_UI_NEXT_PAGE));
     }
 
     // ------------------------------------------------------------------------
     // Operations
     // ------------------------------------------------------------------------
-    /*
-     * (non-Javadoc)
-     * @see org.eclipse.jface.action.Action#run()
-     */
+
      @Override
     public void run() {
-        if ((fView == null) || (fView.getSDWidget()) == null) {
+        if ((getView() == null) || (getView().getSDWidget()) == null) {
             return;
         }
-        if (fView.getSDPagingProvider() != null) {
-            fView.getSDPagingProvider().nextPage();
+        if (getView().getSDPagingProvider() != null) {
+            getView().getSDPagingProvider().nextPage();
         }
-        fView.updateCoolBar();
-        fView.getSDWidget().redraw();
+        getView().updateCoolBar();
+        getView().getSDWidget().redraw();
     }
 }
This page took 0.029519 seconds and 5 git commands to generate.