01: /*
02: #IFNDEF ALT_LICENSE
03: ThinWire(R) RIA Ajax Framework
04: Copyright (C) 2003-2007 Custom Credit Systems
05:
06: This library is free software; you can redistribute it and/or modify it under
07: the terms of the GNU Lesser General Public License as published by the Free
08: Software Foundation; either version 2.1 of the License, or (at your option) any
09: later version.
10:
11: This library is distributed in the hope that it will be useful, but WITHOUT ANY
12: WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13: PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
14:
15: You should have received a copy of the GNU Lesser General Public License along
16: with this library; if not, write to the Free Software Foundation, Inc., 59
17: Temple Place, Suite 330, Boston, MA 02111-1307 USA
18:
19: Users who would rather have a commercial license, warranty or support should
20: contact the following company who invented, built and supports the technology:
21:
22: Custom Credit Systems, Richardson, TX 75081, USA.
23: email: info@thinwire.com ph: +1 (888) 644-6405
24: http://www.thinwire.com
25: #ENDIF
26: [ v1.2_RC2 ]
27: */
28: package thinwire.ui;
29:
30: /**
31: * A Divider provides a visual separation between two sections of a container.
32: * <p>
33: * <p>
34: * <b>Example:</b> <br>
35: * <img src="doc-files/Divider-1.png"> <br>
36: *
37: * <pre>
38: * Dialog dlg = new Dialog("Divider Test");
39: * dlg.setBounds(25, 25, 250, 150);
40: *
41: * Divider horizDiv = new Divider();
42: * horizDiv.setBounds(10, 10, 210, 10);
43: * dlg.getChildren().add(horizDiv);
44: *
45: * Divider vertDiv = new Divider();
46: * vertDiv.setBounds(110, 30, 10, 90);
47: * dlg.getChildren().add(vertDiv);
48: *
49: * dlg.setVisible(true);
50: * </pre>
51: *
52: * </p>
53: * @author Joshua J. Gertzen
54: */
55: public class Divider extends AbstractComponent {
56: /**
57: * Constructs a new Divider.
58: */
59: public Divider() {
60: setFocusCapable(false);
61: }
62: }
|