-
Bug
-
Resolution: Fixed
-
P3
-
1.1.6, 1.2.0
-
1.2fcs
-
x86, sparc
-
solaris_2.5, windows_nt
-
Verified
Name: vsC58871 Date: 10/15/97
Method setValue() of JProgressBar doesn't throw IllegalArgumentException
when specified value is outside the legal range.
Here is a documentation:
public void setValue(int n)
Sets the value to x.
If x is less than the minimum or greater than the maximum, this method throws
IllegalArgumentException and the value is not changed.
Here is an example demonstratring the bug:
----------------Test.java---------------------
import com.sun.java.swing.*;
public class Test{
public static void main(String[] args){
JProgressBar bar = new JProgressBar();
bar.setMinimum(0);
try{
bar.setValue(-100);
System.out.println("IllegalArgumentException was not thrown");
}catch(IllegalArgumentException e){
System.out.println("IllegalArgumentException thrown");
}
System.exit(0);
}
}
---------------- output ----------------
IllegalArgumentException was not thrown
----------------------------------------
======================================================================
- duplicates
-
JDK-4154528 JProgressBar - setValue() fails to throw exception.
-
- Closed
-