01: /* BindingListModelMap.java
02:
03: {{IS_NOTE
04: Purpose:
05:
06: Description:
07:
08: History:
09: Mon Jan 29 21:07:15 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.ListModelMap;
22:
23: import java.util.Map;
24:
25: /**
26: * <p>This is the {@link BindingListModel} as a {@link java.util.Map} to be used with
27: * {@link org.zkoss.zul.Listbox}, {@link org.zkoss.zul.Grid},
28: * and {@link DataBinder}.
29: * Add or remove the contents of this model as a Map would cause the associated Listbox or Grid to change accordingly.</p>
30: *
31: * @author Henri Chen
32: * @see BindingListModel
33: * @see org.zkoss.zul.ListModel
34: * @see org.zkoss.zul.ListModelMap
35: */
36: /*package*/class BindingListModelMap extends ListModelMap implements
37: BindingListModel, java.io.Serializable {
38: /* package */BindingListModelMap(Map map, boolean live) {
39: super(map, live);
40: }
41: }
|