Advertisement
huneater

ActionHandler.class

Apr 21st, 2013
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.20 KB | None | 0 0
  1. package gui;
  2.  
  3. /**
  4.  * User: Zsolt
  5.  * Date: 2013.04.21.
  6.  * Time: 16:51
  7.  */
  8.  
  9. public interface ActionHandler {
  10.     public void pressed();
  11.  
  12.     public void hover();
  13.  
  14.     public void notHover();
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement