tmf: Update copyright headers in tmf.ui
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / handlers / ConfigureMinMax.java
index 0bee489f952a19cbafc04346186b94195aceb999..cbac104692722ecffb9663ffa4acb82faf7f502f 100755 (executable)
@@ -1,43 +1,67 @@
 /**********************************************************************
- * Copyright (c) 2005, 2006, 2011 IBM Corporation and others.
+ * Copyright (c) 2005, 2012 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.linuxtools.tmf.ui.views.uml2sd.dialogs.MinMaxDialog;
 import org.eclipse.ui.IViewPart;
 
 /**
+ * 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;
+    // ------------------------------------------------------------------------
+    // Attributes
+    // ------------------------------------------------------------------------
+    /**
+     * The corresponding sequence diagram view reference.
+     */
+    protected SDView fView = null;
+
+    // ------------------------------------------------------------------------
+    // Constructors
+    // ------------------------------------------------------------------------
 
-    public ConfigureMinMax(IViewPart _view) {
+    /**
+     * Standard constructor.
+     *
+     * @param view The sequence diagram view for the action
+     */
+    public ConfigureMinMax(IViewPart view) {
         super();
-        if (_view instanceof SDView) {
-            view = (SDView) _view;
+        if (view instanceof SDView) {
+            fView = (SDView) view;
         }
     }
 
+    // ------------------------------------------------------------------------
+    // Methods
+    // ------------------------------------------------------------------------
+
+    /*
+     * (non-Javadoc)
+     * @see org.eclipse.jface.action.Action#run()
+     */
     @Override
     public void run() {
-        if (view != null && view.getSDWidget() != null) {
-            MinMaxDialog minMax = new MinMaxDialog(view.getSite().getShell(), view.getSDWidget());
+        if ((fView != null) && (fView.getSDWidget() != null)) {
+            MinMaxDialog minMax = new MinMaxDialog(fView.getSite().getShell(), fView.getSDWidget());
             minMax.open();
         }
     }
This page took 0.024881 seconds and 5 git commands to generate.