01: package net.xoetrope.xui.style;
02:
03: /**
04: * An interface to allow the change of styles for a component
05: * <p> Copyright (c) Xoetrope Ltd., 2002-2003</p>
06: * <p> $Revision: 1.1 $</p>
07: * <p> License: see License.txt</p>
08: */
09: public interface XStyleComponent {
10: public void setStyle(String style);
11: }
|