Index: trunk/src/scriptbuilder/gui/drawers/RangeSlider.java
===================================================================
--- trunk/src/scriptbuilder/gui/drawers/RangeSlider.java	(revision 25)
+++ trunk/src/scriptbuilder/gui/drawers/RangeSlider.java	(revision 26)
@@ -1,4 +1,6 @@
+package scriptbuilder.gui.drawers;
 
 import javax.swing.JSlider;
+
 /*
 The MIT License
@@ -23,5 +25,5 @@
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 THE SOFTWARE.
-*/
+ */
 
 /**
@@ -29,24 +31,28 @@
  * The thumb controls are used to select the lower and upper value of a range
  * with predetermined minimum and maximum values.
- * 
- * <p>Note that RangeSlider makes use of the default BoundedRangeModel, which 
- * supports an inner range defined by a value and an extent.  The upper value
+ *
+ * <p>
+ * Note that RangeSlider makes use of the default BoundedRangeModel, which
+ * supports an inner range defined by a value and an extent. The upper value
  * returned by RangeSlider is simply the lower value plus the extent.</p>
  */
-public class RangeSlider extends JSlider {
+public class RangeSlider extends JSlider
+{
 
     /**
-     * Constructs a RangeSlider with default minimum and maximum values of 0
-     * and 100.
+     * Constructs a RangeSlider with default minimum and maximum values of 0 and
+     * 100.
      */
-    public RangeSlider() {
+    public RangeSlider()
+    {
         initSlider();
     }
 
     /**
-     * Constructs a RangeSlider with the specified default minimum and maximum 
+     * Constructs a RangeSlider with the specified default minimum and maximum
      * values.
      */
-    public RangeSlider(int min, int max) {
+    public RangeSlider(int min, int max)
+    {
         super(min, max);
         initSlider();
@@ -56,5 +62,6 @@
      * Initializes the slider by setting default properties.
      */
-    private void initSlider() {
+    private void initSlider()
+    {
         setOrientation(HORIZONTAL);
     }
@@ -65,5 +72,6 @@
      */
     @Override
-    public void updateUI() {
+    public void updateUI()
+    {
         setUI(new RangeSliderUI(this));
         // Update UI for slider labels.  This must be called after updating the
@@ -76,5 +84,6 @@
      */
     @Override
-    public int getValue() {
+    public int getValue()
+    {
         return super.getValue();
     }
@@ -84,7 +93,9 @@
      */
     @Override
-    public void setValue(int value) {
+    public void setValue(int value)
+    {
         int oldValue = getValue();
-        if (oldValue == value) {
+        if (oldValue == value)
+        {
             return;
         }
@@ -96,6 +107,6 @@
 
         // Set new value and extent, and fire a single change event.
-        getModel().setRangeProperties(newValue, newExtent, getMinimum(), 
-            getMaximum(), getValueIsAdjusting());
+        getModel().setRangeProperties(newValue, newExtent, getMinimum(),
+                getMaximum(), getValueIsAdjusting());
     }
 
@@ -103,5 +114,6 @@
      * Returns the upper value in the range.
      */
-    public int getUpperValue() {
+    public int getUpperValue()
+    {
         return getValue() + getExtent();
     }
@@ -110,9 +122,10 @@
      * Sets the upper value in the range.
      */
-    public void setUpperValue(int value) {
+    public void setUpperValue(int value)
+    {
         // Compute new extent.
         int lowerValue = getValue();
         int newExtent = Math.min(Math.max(0, value - lowerValue), getMaximum() - lowerValue);
-        
+
         // Set extent to set upper value.
         setExtent(newExtent);
