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

appletviewer intermittently displays resizable Frame/Dialog when they should not

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Cannot Reproduce
    • Icon: P4 P4
    • None
    • 1.3.0
    • client-libs
    • sparc
    • solaris_7

      As demonstrate in the following applet that should bring up a non-resizable
      frame and dialog. I noticed the following behavior:

      - If ran on my own machine the appletviewer would occasionally brought up
        a resizable frame and/or dialog when they all should be non-resizable.
        Aside from been resizable when it shouldn't be, sometimes the frame would
        popped up then disappeared. Other times, the frame would come up and
        occupied the entire screen and not its programmed size of 100X250. The
        dialog, sometimes, failed to be displayed as well.

      - If run remotely and displayed on my machine, the resizable frame and/or
        dialog would occur more frequent.

      - If run the applet in the Netscape browser, the frame is consistently not
        resizable but the dialog is always resizable. The browser version is
        "Netscape 4.51/U.S., 27-Feb-99; (c) 1995-1998 Netscape Communications Corp.".

      - There seems to be a timing related failure here because if the methods
        setResizable(), setVisible(), and setBounds() are shuffled then an
        entirely different behaviors prevail.

      - Lastly, my biggest concern is the inconsistent display behavior of the
        appletviewer.

      Roger Pham 3/15/2000

      --------------------------------------------------------------------------------
      import java.awt.*;
      import java.awt.event.*;
      import java.applet.*;

      public class fr extends Applet {

          public void start () {
      Frame f = new Frame("Not Resizable Frame");
      f.setResizable(false);
      f.setVisible(true);
      f.setBounds(100, 100, 250 , 100);

      Dialog d = new Dialog(f, "Not Resizable Dialog");
      d.setResizable(false);
      d.setVisible(true);
      d.setBounds(450, 100, 250, 100);

      setBounds(0, 0, 100 , 100);

      f.add(new Label("Resizable?"));
      d.add(new Label("Resizable?"));
          }
      }

      <html>
      <head> <title>Applet</title> </head>
      <body>
      <h1>Applet</h1>

          <applet
            code=fr
            codebase=file:/home/rogerp/java
            width=100
            height=100
          >

          [[Use an applet-enabled browser]]
          </applet>


      </body>
      </html>

            mbronsonsunw Mike Bronson (Inactive)
            rphamsunw Roger Pham (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: