01 /**
02 *
03 * All content copyright (c) 2003-2008 Terracotta, Inc.,
04 * except as may otherwise be noted in a separate copyright notice.
05 * All rights reserved.
06 *
07 */
08 package demo.sharededitor.ui;
09
10 import java.awt.Image;
11
12 /**
13 * Description of the Interface
14 *
15 *@author Terracotta, Inc.
16 */
17 public interface Texturable {
18 void setTexture(Image image);
19
20 void clearTexture();
21 }
|