Advertisement
razaron

GUI Library/Element

Jul 1st, 2013
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.26 KB | None | 0 0
  1.  
  2. public class Element {
  3.     final String ID;
  4.     int state;
  5.    
  6.     Square geom;
  7.    
  8.     public Element(String ID, int state, Square geom){
  9.         this.ID = ID;
  10.         this.state = state;
  11.         this.geom = geom;
  12.     }
  13.  
  14.     public void triggerEvent() {
  15.         System.out.println(ID);
  16.     }
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement