home *** CD-ROM | disk | FTP | other *** search
/ The Net: Ultimate Internet Guide / WWLCD1.ISO / pc / java / de86gnzn / examples / boink / com / next / gt / bonushandler.java < prev    next >
Encoding:
Java Source  |  1996-08-14  |  318 b   |  20 lines

  1.  
  2. /**
  3.  *
  4.  * BonusHandler.java
  5.  * @author    Mark G. Tacchi (mtacchi@next.com) 
  6.  * @version    0.8
  7.  * Mar 15/1996
  8.  *
  9.  * 
  10.  * An interface. The object which requires notification for bonuses
  11.  * should implement this.
  12.  *
  13.  */
  14.  
  15.  
  16. package com.next.gt;
  17.  
  18. public interface BonusHandler {
  19. void didAchieveBonus ();
  20. } /*BonusHandler*/
  21.