01: /* 02: @COPYRIGHT@ 03: */ 04: package demo.sharededitor.ui; 05: 06: import java.awt.Image; 07: 08: public interface Texturable { 09: void setTexture(Image image); 10: 11: void clearTexture(); 12: }