home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / VCafe / WDESAMPL.BIN / GraphicsFrame.class (.txt) < prev    next >
Encoding:
Java Class File  |  1996-09-18  |  784 b   |  17 lines

  1. import java.awt.Event;
  2. import java.awt.Frame;
  3.  
  4. class GraphicsFrame extends Frame {
  5.    public GraphicsFrame() {
  6.       super("Graphics Test");
  7.    }
  8.  
  9.    public boolean handleEvent(Event e) {
  10.       if (e.id == 201) {
  11.          System.exit(0);
  12.       }
  13.  
  14.       return false;
  15.    }
  16. }
  17.