--- /home/cpdev/src/classpath/javax/swing/DefaultBoundedRangeModel.java	2005-07-02 21:03:59.000000000 +0000
+++ javax/swing/DefaultBoundedRangeModel.java	2005-06-30 05:35:08.000000000 +0000
@@ -61,6 +61,7 @@
    */
   private static final long serialVersionUID = 5034068491295259790L;
 
+
   /**
    * An event that is sent to all registered {@link ChangeListener}s
    * when the state of this range model has changed.
@@ -72,11 +73,13 @@
    */
   protected transient ChangeEvent changeEvent;
 
+
   /**
    * The list of the currently registered EventListeners.
    */
   protected EventListenerList listenerList = new EventListenerList();
 
+
   /**
    * The current value of the range model, which is always between
    * {@link #minimum} and ({@link #maximum} - {@link #extent}). In a
@@ -85,6 +88,7 @@
    */
   private int value;
 
+
   /**
    * The current extent of the range model, which is a number greater
    * than or equal to zero. In a scroll bar visualization of a {@link
@@ -93,24 +97,28 @@
    */
   private int extent;
 
+
   /**
    * The current minimum value of the range model, which is always
    * less than or equal to {@link #maximum}.
    */
   private int minimum;
 
+
   /**
    * The current maximum value of the range model, which is always
    * greater than or equal to {@link #minimum}.
    */
   private int maximum;
 
+
   /**
    * A property that indicates whether the value of this {@link
    * BoundedRangeModel} is going to change in the immediate future.
    */
   private boolean isAdjusting;
 
+
   /**
    * Constructs a <code>DefaultBoundedRangeModel</code> with default
    * values for the properties. The properties <code>value</code>,
@@ -126,25 +134,29 @@
     maximum = 100;
   }
 
+
   /**
    * Constructs a <code>DefaultBoundedRangeModel</code> with the
    * specified values for some properties.
    *
    * @param value the initial value of the range model, which must be
-   *     a number between <code>minimum</code> and <code>(maximum -
-   *     extent)</code>. In a scroll bar visualization of a {@link
-   *     BoundedRangeModel}, the <code>value</code> is displayed as the
-   *     position of the thumb.
+   * a number between <code>minimum</code> and <code>(maximum -
+   * extent)</code>. In a scroll bar visualization of a {@link
+   * BoundedRangeModel}, the <code>value</code> is displayed as the
+   * position of the thumb.
+   *
    * @param extent the initial extent of the range model, which is a
-   *     number greater than or equal to zero. In a scroll bar
-   *     visualization of a {@link BoundedRangeModel}, the
-   *     <code>extent</code> is displayed as the size of the thumb.
+   * number greater than or equal to zero. In a scroll bar
+   * visualization of a {@link BoundedRangeModel}, the
+   * <code>extent</code> is displayed as the size of the thumb.
+   *
    * @param minimum the initial minimal value of the range model.
+   *
    * @param maximum the initial maximal value of the range model.
    *
    * @throws IllegalArgumentException if the following condition is
-   *     not satisfied: <code>minimum &lt;= value &lt;= value + extent &lt;=
-   *     maximum</code>.
+   * not satisfied: <code>minimum &lt;= value &lt;= value + extent &lt;=
+   * maximum</code>.
    */
   public DefaultBoundedRangeModel(int value, int extent, int minimum,
                                   int maximum)
@@ -160,6 +172,7 @@
     // The isAdjusting field already has a false value by default.
   }
 
+
   /**
    * Returns a string with all relevant properties of this range
    * model.
@@ -177,6 +190,7 @@
       + ']';
   }
 
+
   /**
    * Returns the current value of this bounded range model.  In a
    * scroll bar visualization of a {@link BoundedRangeModel}, the
@@ -189,6 +203,7 @@
     return value;
   }
 
+
   /**
    * Changes the current value of this bounded range model. In a
    * scroll bar visualization of a {@link BoundedRangeModel}, the
@@ -211,6 +226,7 @@
       }
   }
 
+
   /**
    * Returns the current extent of this bounded range model, which is
    * a number greater than or equal to zero. In a scroll bar
@@ -224,13 +240,14 @@
     return extent;
   }
 
+
   /**
    * Changes the current extent of this bounded range model. In a
    * scroll bar visualization of a {@link BoundedRangeModel}, the
    * <code>extent</code> is displayed as the size of the thumb.
    *
    * @param extent the new extent of the range model, which is a
-   *     number greater than or equal to zero.
+   * number greater than or equal to zero.
    */
   public void setExtent(int extent)
   {
@@ -245,6 +262,7 @@
       }
   }
 
+
   /**
    * Returns the current minimal value of this bounded range model.
    */
@@ -253,6 +271,7 @@
     return minimum;
   }
 
+
   /**
    * Changes the current minimal value of this bounded range model.
    *
@@ -268,6 +287,7 @@
     setRangeProperties(value, extent, minimum, maximum, isAdjusting);
   }
 
+
   /**
    * Returns the current maximal value of this bounded range model.
    *
@@ -278,6 +298,7 @@
     return maximum;
   }
 
+
   /**
    * Changes the current maximal value of this bounded range model.
    *
@@ -294,6 +315,7 @@
     setRangeProperties(value, extent, minimum, maximum, isAdjusting);
   }
 
+
   /**
    * Returns whether or not the value of this bounded range model is
    * going to change in the immediate future. Scroll bars set this
@@ -302,13 +324,14 @@
    * <code>false</code> and post a final {@link ChangeEvent}.
    *
    * @return <code>true</code> if the value will change soon again;
-   *     <code>false</code> if the value will probably not change soon.
+   * <code>false</code> if the value will probably not change soon.
    */
   public boolean getValueIsAdjusting()
   {
     return isAdjusting;
   }
 
+
   /**
    * Specifies whether or not the value of this bounded range model is
    * going to change in the immediate future. Scroll bars set this
@@ -317,8 +340,8 @@
    * <code>false</code>.
    *
    * @param isAdjusting <code>true</code> if the value will change
-   *     soon again; <code>false</code> if the value will probably not
-   *     change soon.
+   * soon again; <code>false</code> if the value will probably not
+   * change soon.
    */
   public void setValueIsAdjusting(boolean isAdjusting)
   {
@@ -329,23 +352,28 @@
     fireStateChanged();
   }
 
+
   /**
    * Sets all properties.
    *
    * @param value the new value of the range model.  In a scroll bar
-   *     visualization of a {@link BoundedRangeModel}, the
-   *     <code>value</code> is displayed as the position of the thumb.
+   * visualization of a {@link BoundedRangeModel}, the
+   * <code>value</code> is displayed as the position of the thumb.
+   *
    * @param extent the new extent of the range model, which is a
-   *     number greater than or equal to zero. In a scroll bar
-   *     visualization of a {@link BoundedRangeModel}, the
-   *     <code>extent</code> is displayed as the size of the thumb.
+   * number greater than or equal to zero. In a scroll bar
+   * visualization of a {@link BoundedRangeModel}, the
+   * <code>extent</code> is displayed as the size of the thumb.
+   *
    * @param minimum the new minimal value of the range model.
+   *
    * @param maximum the new maximal value of the range model.
+
    * @param isAdjusting whether or not the value of this bounded range
-   *     model is going to change in the immediate future. Scroll bars set
-   *     this property to <code>true</code> while the thumb is being
-   *     dragged around; when the mouse is relased, they set the property
-   *     to <code>false</code>.
+   * model is going to change in the immediate future. Scroll bars set
+   * this property to <code>true</code> while the thumb is being
+   * dragged around; when the mouse is relased, they set the property
+   * to <code>false</code>.
    */
   public void setRangeProperties(int value, int extent, int minimum,
                                  int maximum, boolean isAdjusting)
@@ -372,6 +400,7 @@
     fireStateChanged();
   }
 
+
   /**
    * Subscribes a ChangeListener to state changes.
    *
@@ -382,6 +411,7 @@
     listenerList.add(ChangeListener.class, listener);
   }
 
+
   /**
    * Cancels the subscription of a ChangeListener.
    *
@@ -392,6 +422,7 @@
     listenerList.remove(ChangeListener.class, listener);
   }
 
+
   /**
    * Sends a {@link ChangeEvent} to any registered {@link
    * ChangeListener}s.
@@ -410,14 +441,15 @@
       listeners[i].stateChanged(changeEvent);
   }
 
+
   /**
    * Retrieves the current listeners of the specified class.
    *
    * @param c the class of listeners; usually {@link
-   *     ChangeListener}<code>.class</code>.
+   * ChangeListener}<code>.class</code>.
    *
    * @return an array with the currently subscribed listeners, or
-   *     an empty array if there are currently no listeners.
+   * an empty array if there are currently no listeners.
    *
    * @since 1.3
    */
@@ -426,13 +458,14 @@
     return listenerList.getListeners(listenerType);
   }
 
+
   /**
    * Returns all <code>ChangeListeners</code> that are currently
    * subscribed for changes to this
    * <code>DefaultBoundedRangeModel</code>.
    *
    * @return an array with the currently subscribed listeners, or
-   *     an empty array if there are currently no listeners.
+   * an empty array if there are currently no listeners.
    *
    * @since 1.4
    */
