01: package com.xoetrope.carousel.survey;
02:
03: /**
04: * An interface for expandable objects in grahpic editor
05: *
06: * <p> Copyright (c) Xoetrope Ltd., 2001-2006, This software is licensed under
07: * the GNU Public License (GPL), please see license.txt for more details. If
08: * you make commercial use of this software you must purchase a commercial
09: * license from Xoetrope.</p>
10: * <p> $Revision: 1.5 $</p>
11: */
12: public interface XExpandable {
13: /**
14: * expand/collapse object
15: */
16: public void expand(boolean status);
17:
18: /**
19: * move object to the front
20: */
21: public void moveToFront();
22: }
|