home *** CD-ROM | disk | FTP | other *** search
/ Java 1.2 How-To / JavaHowTo.iso / 3rdParty / Gamelication / examples / Boinkaroids / com / next / gt / eventbackup / EventHandler.java < prev    next >
Encoding:
Java Source  |  1998-04-10  |  362 b   |  19 lines

  1. /**
  2.  *
  3.  * EventHandler.java
  4.  * @author    Mark G. Tacchi (mtacchi@next.com) 
  5.  * @version    0.8
  6.  * Mar 21/1996
  7.  *
  8.  * The objects which require notification for events should implement this.
  9. */
  10.  
  11. package com.next.gt;
  12.  
  13. import java.awt.*;
  14. import java.awt.event.*;
  15.  
  16. public interface EventHandler {
  17. public boolean handleRequestedEvent(AWTEvent theEvent);
  18. } /*EventHandler*/
  19.