01: /* Vbox.java
02:
03: {{IS_NOTE
04: Purpose:
05:
06: Description:
07:
08: History:
09: Mon Jun 20 22:17:09 2005, Created by tomyeh
10: }}IS_NOTE
11:
12: Copyright (C) 2005 Potix Corporation. All Rights Reserved.
13:
14: {{IS_RIGHT
15: This program is distributed under GPL Version 2.0 in the hope that
16: it will be useful, but WITHOUT ANY WARRANTY.
17: }}IS_RIGHT
18: */
19: package org.zkoss.zul;
20:
21: import org.zkoss.zk.ui.Component;
22:
23: /**
24: * A vbox.
25: *
26: * @author tomyeh
27: */
28: public class Vbox extends Box {
29: public Vbox() {
30: }
31:
32: /** Constructor a vertical box by assigning an array of children.
33: *
34: * @param children an array of children to be added
35: * @since 2.4.0
36: */
37: public Vbox(Component[] children) {
38: super(children);
39: }
40: }
|