01: /* SelectedListModel.java
02:
03: {{IS_NOTE
04: Purpose:
05:
06: Description:
07:
08: History:
09: Mon Jan 29 17:29:44 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.ListModel;
22:
23: /**
24: * This interface defines the methods used by DataBinder.
25: *
26: * @author Henri
27: * @see BindingListModelList
28: * @see BindingListModelSet
29: * @see BindingListModelMap
30: * @see org.zkoss.zul.ListModel
31: */
32: public interface BindingListModel extends ListModel {
33: /** Returns index of the given object inside a ListModel.
34: */
35: public int indexOf(Object obj);
36: }
|