home *** CD-ROM | disk | FTP | other *** search
/ The Net: Ultimate Internet Guide / WWLCD1.ISO / pc / java / de86gnzn / examples / boink / com / next / gt / eventhandler.java < prev    next >
Encoding:
Java Source  |  1996-08-14  |  342 b   |  18 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.Event;
  14.  
  15. public interface EventHandler {
  16. public boolean handleRequestedEvent(Event theEvent);
  17. } /*EventHandler*/
  18.