1 26 package org.htmlparser.lexerapplications.thumbelina; 27 28 import java.awt.Rectangle ; 29 30 34 public interface Tile extends Cloneable  35 { 36 40 Rectangle getBounds (); 41 42 47 void setBounds (Rectangle rectangle); 48 49 53 boolean getValid (); 54 55 60 void setValid (boolean valid); 61 62 66 Object getIdentity (); 67 68 74 void setIdentity (Object object); 75 76 79 void reset (); 80 81 86 Object clone (); 87 } 88 | Popular Tags |