ss: Move plugins to Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / handlers / OpenSDPagesDialog.java
index 3ceb3e224539f8fd4d853aa7e284ae558a90a463..160a73aad7ab6c707c0c211084285e9d15997479 100755 (executable)
@@ -1,25 +1,23 @@
 /**********************************************************************
- * Copyright (c) 2005, 2008 IBM Corporation and others.
- * Copyright (c) 2011, 2012 Ericsson.
- *
+ * 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
  *
  * Contributors:
- * IBM - Initial API and implementation
- * Bernd Hufmann - Updated for TMF
+ *     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.tmf.ui.views.uml2sd.SDView;
 import org.eclipse.linuxtools.tmf.ui.views.uml2sd.dialogs.PagesDialog;
 import org.eclipse.linuxtools.tmf.ui.views.uml2sd.handlers.provider.ISDAdvancedPagingProvider;
-import org.eclipse.linuxtools.tmf.ui.views.uml2sd.util.SDMessages;
+import org.eclipse.linuxtools.tmf.ui.views.uml2sd.util.Messages;
 
 /**
  * Action class implementation for paging.
@@ -27,11 +25,12 @@ import org.eclipse.linuxtools.tmf.ui.views.uml2sd.util.SDMessages;
  * @version 1.0
  * @author Bernd Hufmann
  */
-public class OpenSDPagesDialog extends Action {
+public class OpenSDPagesDialog extends BaseSDAction {
 
     // ------------------------------------------------------------------------
     // Constants
     // ------------------------------------------------------------------------
+
     /**
      * The action ID.
      */
@@ -40,18 +39,16 @@ public class OpenSDPagesDialog extends Action {
     // ------------------------------------------------------------------------
     // Attributes
     // ------------------------------------------------------------------------
-    /**
-     * The sequence diagram view reference
-     */
-    protected SDView fView;
+
     /**
      * The advanced paging provider reference.
      */
-    protected ISDAdvancedPagingProvider fProvider;
+    private final ISDAdvancedPagingProvider fProvider;
 
     // ------------------------------------------------------------------------
     // Constructors
     // ------------------------------------------------------------------------
+
     /**
      * Constructor
      *
@@ -61,26 +58,23 @@ public class OpenSDPagesDialog extends Action {
      *            The provider
      */
     public OpenSDPagesDialog(SDView view, ISDAdvancedPagingProvider provider) {
-        super(SDMessages._44);
+        super(view);
+        setText(Messages.SequenceDiagram_Pages);
         setImageDescriptor(Activator.getDefault().getImageDescripterFromPath(ITmfImageConstants.IMG_UI_GOTO_PAGE));
         setId(ID);
-        fView = view;
         fProvider = provider;
     }
 
     // ------------------------------------------------------------------------
     // Operations
     // ------------------------------------------------------------------------
-    /*
-     * (non-Javadoc)
-     * @see org.eclipse.jface.action.Action#run()
-     */
+
     @Override
     public void run() {
-        if (fView == null) {
+        if (getView() == null) {
             return;
         }
-        PagesDialog dialog = new PagesDialog(fView, fProvider);
+        PagesDialog dialog = new PagesDialog(getView(), fProvider);
         dialog.open();
     }
 }
This page took 0.026936 seconds and 5 git commands to generate.