home *** CD-ROM | disk | FTP | other *** search
Java Source | 1996-08-14 | 318 b | 20 lines |
-
- /**
- *
- * BonusHandler.java
- * @author Mark G. Tacchi (mtacchi@next.com)
- * @version 0.8
- * Mar 15/1996
- *
- *
- * An interface. The object which requires notification for bonuses
- * should implement this.
- *
- */
-
-
- package com.next.gt;
-
- public interface BonusHandler {
- void didAchieveBonus ();
- } /*BonusHandler*/
-