src/java.desktop/share/classes/javax/swing/JProgressBar.java

Print this page

        

*** 188,206 **** protected boolean paintString; /** * The default minimum for a progress bar is 0. */ ! static final private int defaultMinimum = 0; /** * The default maximum for a progress bar is 100. */ ! static final private int defaultMaximum = 100; /** * The default orientation for a progress bar is <code>HORIZONTAL</code>. */ ! static final private int defaultOrientation = HORIZONTAL; /** * Only one <code>ChangeEvent</code> is needed per instance since the * event's only interesting property is the immutable source, which * is the progress bar. --- 188,206 ---- protected boolean paintString; /** * The default minimum for a progress bar is 0. */ ! private static final int defaultMinimum = 0; /** * The default maximum for a progress bar is 100. */ ! private static final int defaultMaximum = 100; /** * The default orientation for a progress bar is <code>HORIZONTAL</code>. */ ! private static final int defaultOrientation = HORIZONTAL; /** * Only one <code>ChangeEvent</code> is needed per instance since the * event's only interesting property is the immutable source, which * is the progress bar.