ss: Move plugins to Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / handlers / ConfigureMinMax.java
index 0bee489f952a19cbafc04346186b94195aceb999..a9e62c3af6d088e2a9251b2cbce3e0352aeb4487 100755 (executable)
@@ -1,43 +1,45 @@
 /**********************************************************************
- * Copyright (c) 2005, 2006, 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: ConfigureMinMax.java,v 1.1 2006/08/16 21:15:28 amehregani 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.tmf.ui.views.uml2sd.SDView;
-import org.eclipse.linuxtools.tmf.ui.views.uml2sd.SDWidget;
-import org.eclipse.linuxtools.tmf.ui.views.uml2sd.util.MinMaxDialog;
-import org.eclipse.ui.IViewPart;
+import org.eclipse.linuxtools.tmf.ui.views.uml2sd.dialogs.MinMaxDialog;
 
 /**
+ * Action class implementation to configure minimum and maximum time range values.
+ *
+ * @version 1.0
  * @author sveyrier
- * 
+ *
  */
-public class ConfigureMinMax extends Action {
-
-    protected SDWidget viewer = null;
-    protected SDView view = null;
+public class ConfigureMinMax extends BaseSDAction {
 
-    public ConfigureMinMax(IViewPart _view) {
-        super();
-        if (_view instanceof SDView) {
-            view = (SDView) _view;
-        }
+    /**
+     * Constructor
+     * @param view
+     *          the sequence diagram view reference
+     * @since 2.0
+     */
+    public ConfigureMinMax(SDView view) {
+        super(view);
     }
-
+    // ------------------------------------------------------------------------
+    // Methods
+    // ------------------------------------------------------------------------
     @Override
     public void run() {
-        if (view != null && view.getSDWidget() != null) {
-            MinMaxDialog minMax = new MinMaxDialog(view.getSite().getShell(), view.getSDWidget());
+        if ((getView() != null) && (getView().getSDWidget() != null)) {
+            MinMaxDialog minMax = new MinMaxDialog(getView().getSite().getShell(), getView().getSDWidget());
             minMax.open();
         }
     }
This page took 0.025969 seconds and 5 git commands to generate.