01: package net.xoetrope.builder.editor.components.swing;
02:
03: import net.xoetrope.builder.editor.components.PropertyHelper;
04: import net.xoetrope.swing.XList;
05: import net.xoetrope.xui.XPage;
06:
07: /**
08: * A helper for the XList types
09: * <p> Copyright (c) Xoetrope Ltd., 2002-2003</p>
10: * <p> $Revision: 1.5 $</p>
11: */
12: public class XListHelper extends PropertyHelper {
13: public XListHelper() {
14: className = XList.class.toString();
15: componentType = XPage.LIST;
16: }
17: }
|