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

Dialog.setLocation(int,int) works unstable when the dialog is visible

XMLWordPrintable

    • x86, sparc
    • solaris, solaris_2.5.1



      Name: aaC67449 Date: 12/26/97



      Dialog.setLocation(int,int) does not always set location correctly when the frame is visible.
      The test sets location of dialog 100 times and counts how many times the location was set incorrectly.


      import java.awt.*;

      public class Test {

         public static void main(String argv[]) {
      int err=0;
      Dialog f=new Dialog(new Frame());
              f.setVisible(true);
      for(int i=0 ; i<100; i++){
      int x=(new Double(Math.random()
      *(Toolkit.getDefaultToolkit().getScreenSize().width
      -300))).intValue();
      int y=(new Double(Math.random()
      *(Toolkit.getDefaultToolkit().getScreenSize().height
      -400))).intValue();

      f.setLocation(x,y);
           
                  if (f.getLocation().x!=x || f.getLocation().y!=y)
                         err++;
                          
              }
           System.out.println(" "+err+" errors");
           System.exit(0);
        }
      }

         ------------Output---------
       98 errors

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

            bchristi Brent Christian
            aalievsunw Artem Aliev (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: