jdk/src/java.desktop/share/classes/javax/swing/JProgressBar.java
changeset 32865 f9cb6e427f9e
parent 28059 e576535359cc
child 33253 78e735319356
equal deleted inserted replaced
32864:2a338536e642 32865:f9cb6e427f9e
   188     protected boolean paintString;
   188     protected boolean paintString;
   189 
   189 
   190     /**
   190     /**
   191      * The default minimum for a progress bar is 0.
   191      * The default minimum for a progress bar is 0.
   192      */
   192      */
   193     static final private int defaultMinimum = 0;
   193     private static final int defaultMinimum = 0;
   194     /**
   194     /**
   195      * The default maximum for a progress bar is 100.
   195      * The default maximum for a progress bar is 100.
   196      */
   196      */
   197     static final private int defaultMaximum = 100;
   197     private static final int defaultMaximum = 100;
   198     /**
   198     /**
   199      * The default orientation for a progress bar is <code>HORIZONTAL</code>.
   199      * The default orientation for a progress bar is <code>HORIZONTAL</code>.
   200      */
   200      */
   201     static final private int defaultOrientation = HORIZONTAL;
   201     private static final int defaultOrientation = HORIZONTAL;
   202 
   202 
   203     /**
   203     /**
   204      * Only one <code>ChangeEvent</code> is needed per instance since the
   204      * Only one <code>ChangeEvent</code> is needed per instance since the
   205      * event's only interesting property is the immutable source, which
   205      * event's only interesting property is the immutable source, which
   206      * is the progress bar.
   206      * is the progress bar.