01: package com.xoetrope.swing;
02:
03: /**
04: * An accordian control where panels can be expanded or closed
05: *
06: * <p> Copyright (c) Xoetrope Ltd., 2001-2007, This software is licensed under
07: * the GNU Public License (GPL), please see license.txt for more details. If
08: * you make commercial use of this software you must purchase a commercial
09: * license from Xoetrope.</p>
10: * <p> $Revision: 1.15 $</p>
11: */
12: public class XAccordian extends XRollupBar {
13: public XAccordian() {
14: setAllExpandable(true);
15: }
16: }
|