01: package net.xoetrope.xui;
02:
03: import java.net.URL;
04:
05: /**
06: * An interface for adding content to a component. Used by the component
07: * factories to add content to newly created components.
08: * <p>Copyright (c) Xoetrope Ltd., 2002-2003</p>
09: * <p>License: see license.txt</p>
10: * $Revision: 1.13 $
11: */
12: public interface XContentHolder {
13: /**
14: * Set the content for the component
15: * @param content the new contents
16: */
17: public void setContent(String content);
18: }
|