home *** CD-ROM | disk | FTP | other *** search
/ Java by Example / jbecd.bin / JBE-CD / NTUsers / JBECODE.ZIP / JavaByExample / chap23 / FrameApplet.java < prev    next >
Text File  |  1996-03-06  |  684b  |  34 lines

  1. import java.awt.*;
  2. import java.applet.*;
  3.  
  4. public class FrameApplet extends Applet
  5. {
  6.     Frame frame;
  7.     Button button;
  8.  
  9.     public void init()
  10.     {
  11.           frame = new Frame("Frame Window");
  12.           button = new Button("Show Window");
  13.           add(button);
  14.     }
  15.  
  16.     public boolean action(Event evt, Object arg)
  17.     {
  18.         boolean visible = frame.isShowing();
  19.         if (visible)
  20.         {
  21.             frame.hide();
  22.             button.setLabel("Show Window");
  23.         }
  24.         else
  25.         {
  26.             frame.show();
  27.             frame.resize(200, 100);
  28.             button.setLabel("Hide Window");
  29.         }
  30.  
  31.         return true;
  32.     }
  33. }
  34.