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

Restarting an applet does not clear out old components

XMLWordPrintable

      I've noticed that some applet viewers sometimes will do weird things
      when you restart an applet. Specifically, the old components don't get
      done away with when you restart, so you end up with twice the number of
      components. E.g., if you have an applet with one TextField, when you
      restart, you'll have two TextFields. I just saw this behavior in the
      Solaris appletviewer. I've seen it before in other circumstances.

      Putting a removeAll() call in the destroy method seems to avoid this
      problem.

      Do you think I should recommend this trick? Or is it a browser bug to
      not get rid of the applet's components when the applet is destroyed?
      (Or are both true?)

      More justification from Herb Jellinek:

      - Depending on the window system, the components are probably
      references to external resources which should be freed as early as
      possible. But users don't have the kind of control over deallocation
      of Components that they have with, say, Graphics contexts, so they
      can't (shouldn't) explicitly dispose() of them.

      - The components are unusable after destroy() - so why keep them
      around? They waste precious memory.

      - Keeping them around makes debugging certain types of programs much,
      much harder. This was our experience doing Kona.

      In addition, I (Kathy) believe that applet writers are told that they should
      never depend on the destroy() method being called.
      Reproduce:
      Go to this directory:
          ~kwalrath/WS/docs/src/tutorial/applet/overview/example-1.1
      Enter this:
          appletviewer ScrollingSimple.html
      Click restart.
      Thanks...
      --Kathy Walrath

            mmcclosksunw Michael Mccloskey (Inactive)
            rfield Robert Field (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: