Author: tfmorris
Date: 2008-04-06 10:23:59-0700
New Revision: 14293

Modified:
   trunk/src/app/src/org/argouml/ui/ZoomSliderButton.java

Log:
Fix Javadoc and extra spaces.  No functional change.

Modified: trunk/src/app/src/org/argouml/ui/ZoomSliderButton.java
Url: 
http://argouml.tigris.org/source/browse/argouml/trunk/src/app/src/org/argouml/ui/ZoomSliderButton.java?view=diff&rev=14293&p1=trunk/src/app/src/org/argouml/ui/ZoomSliderButton.java&p2=trunk/src/app/src/org/argouml/ui/ZoomSliderButton.java&r1=14292&r2=14293
==============================================================================
--- trunk/src/app/src/org/argouml/ui/ZoomSliderButton.java      (original)
+++ trunk/src/app/src/org/argouml/ui/ZoomSliderButton.java      2008-04-06 
10:23:59-0700
@@ -74,7 +74,7 @@
      * Font used for the slider tick labels and for the current magnification
      * value label.
      */
-    private static final Font   LABEL_FONT = new Font("Dialog", Font.PLAIN, 
10);
+    private static final Font LABEL_FONT = new Font("Dialog", Font.PLAIN, 10);
 
     /**
      * The minimum zoom slider value (as percentage).
@@ -82,39 +82,39 @@
     public static final int MINIMUM_ZOOM = 25;
 
     /**
-     * The minimum zoom slider value (as percentage).
+     * The maximum zoom slider value (as percentage).
      */
     public static final int MAXIMUM_ZOOM = 300;
 
     /**
      * The preferred height of the slider component.
      */
-    private static final int    SLIDER_HEIGHT = 250;
+    private static final int SLIDER_HEIGHT = 250;
 
     /**
      * The slider component.
      */
-    private JSlider             slider = null;
+    private JSlider slider = null;
 
     /**
      * The text field which shows the current zoom magnification value.
      */
-    private JTextField          currentValue = null;
-    
+    private JTextField currentValue = null;
+
     /**
      * Used to enable/disable the popup button.
      */
-    private boolean             popupButtonIsActive = true;
-    
+    private boolean popupButtonIsActive = true;
+
     /**
      * Indicates whether the popupmenu is showing or not.
      */
-    private boolean             popupMenuIsShowing = false;
-    
+    private boolean popupMenuIsShowing = false;
+
     /**
      * Indicates whether the mouse is over the popup button or not.
      */
-    private boolean             mouseIsOverPopupButton = false;
+    private boolean mouseIsOverPopupButton = false;
 
     /**
      * Constructs a new ZoomSliderButton.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to