01: package net.xoetrope.xui;
02:
03: import java.awt.Container;
04:
05: /**
06: * Some containers use a content pane to hold their content rather than allowing
07: * the container to hold its children directly. This interface is designed to
08: * allow the editor determine which containers act in this way.
09: * <p> Copyright (c) Xoetrope Ltd., 2002-2003</p>
10: * <p> $Revision: 1.2 $</p>
11: * <p> License: see License.txt</p>
12: */
13: public interface XContentPane {
14: /**
15: * Get the container that holds the content
16: * @return the coontent container/panel
17: */
18: public Container getContentPane();
19: }
|