01: package net.xoetrope.builder.editor.components.swing;
02:
03: import net.xoetrope.swing.XPanel;
04:
05: /**
06: * A simple wrapper to enable this component to be focusable for purposes of
07: * the editor
08: * <p> Copyright (c) Xoetrope Ltd., 2002-2003</p>
09: * <p> $Revision: 1.1 $</p>
10: * <p> License: see License.txt</p>
11: */
12: public class XPanelProxy extends XPanel {
13: public boolean isFocusable() {
14: return true;
15: }
16: }
|