Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4086250

Method setValue() of JProgressBar doesn't throw IllegalArgumentException.

XMLWordPrintable

    • 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
      ----------------------------------------

      ======================================================================

            sswingtrsunw Swingtraq Swingtraq (Inactive)
            vsizikov Vladimir Sizikov
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: