01: /* BindingListModelArray.java
02:
03: {{IS_NOTE
04: Purpose:
05:
06: Description:
07:
08: History:
09: Mon Feb 26 17:37:25 2007, Created by henrichen
10: }}IS_NOTE
11:
12: Copyright (C) 2007 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.zkplus.databind;
20:
21: import org.zkoss.zul.ListModelArray;
22:
23: /**
24: * <p>This is the {@link BindingListModel} as a Object array to be used with
25: * {@link org.zkoss.zul.Listbox}, {@link org.zkoss.zul.Grid},
26: * and {@link DataBinder}.
27: * Modify the contents of this model as an Object array would cause the associated Listbox or Grid to change accordingly.</p>
28: *
29: * @author Henri Chen
30: * @see BindingListModel
31: * @see org.zkoss.zul.ListModel
32: * @see org.zkoss.zul.ListModelArray
33: */
34: /*package*/class BindingListModelArray extends ListModelArray
35: implements BindingListModel, java.io.Serializable {
36: /* package */BindingListModelArray(Object[] c, boolean live) {
37: super(c, live);
38: }
39: }
|