Uses of Interface
org.zkoss.zul.ListModel

Packages that use ListModel
org.zkoss.bind.converter.sys System Converter for ZK Bind 
org.zkoss.zkex.zul Zul Extension library. 
org.zkoss.zkplus.databind The DataBinder used for binding ZK UI component and the backend data bean. 
org.zkoss.zul ZUL component set that are used for HTML-based clients. 
org.zkoss.zul.event Events of ZUL Component Set. 
org.zkoss.zul.impl Classes used to implement ZUL Component Set (implementation only). 
 

Uses of ListModel in org.zkoss.bind.converter.sys
 

Methods in org.zkoss.bind.converter.sys that return ListModel
protected  ListModel<?> ComboboxModelConverter.getComponentModel(Component comp)
           
protected  ListModel<?> RadiogroupSelectedIndexConverter.getComponentModel(Component comp)
           
protected  ListModel<?> SelectboxModelConverter.getComponentModel(Component comp)
           
protected  ListModel<?> SelectboxSelectedIndexConverter.getComponentModel(Component comp)
           
protected  ListModel<?> GridModelConverter.getComponentModel(Component comp)
           
protected  ListModel<?> ListboxSelectedIndexConverter.getComponentModel(Component comp)
           
protected  ListModel<?> ComboboxSelectedIndexConverter.getComponentModel(Component comp)
           
protected  ListModel<?> RadiogroupModelConverter.getComponentModel(Component comp)
           
protected  ListModel<?> ListboxModelConverter.getComponentModel(Component comp)
           
protected  ListModel<?> ListboxModelConverter.handleWrappedModel(BindContext ctx, Component comp, ListModel<?> model)
           
 

Methods in org.zkoss.bind.converter.sys with parameters of type ListModel
protected  ListModel<?> ListboxModelConverter.handleWrappedModel(BindContext ctx, Component comp, ListModel<?> model)
           
 

Uses of ListModel in org.zkoss.zkex.zul
 

Methods in org.zkoss.zkex.zul that return ListModel
 ListModel<T> SimpleListModelSharer.getProxy(Desktop desktop)
          Get a proxy which is to be used in listbox or grid of a desktop.
 ListModel<T> ListModelSharer.getProxy(Desktop desktop)
          Get a proxy which is to be used in listbox or grid of a desktop.
 

Constructors in org.zkoss.zkex.zul with parameters of type ListModel
SimpleListModelSharer(ListModel<T> model)
           
 

Uses of ListModel in org.zkoss.zkplus.databind
 

Subinterfaces of ListModel in org.zkoss.zkplus.databind
 interface BindingListModel<E>
          This interface defines the methods used by DataBinder.
 interface BindingListModelExt<E>
          Support same object in multiple items of a ListModel.
 

Classes in org.zkoss.zkplus.databind that implement ListModel
 class BindingGroupsListModel
          This is the BindingListModel as a GroupsListModel to be used with Listbox, Grid, and DataBinder.
 class BindingListModelArray<E>
          This is the BindingListModel as a Object array to be used with Listbox, Grid, and DataBinder.
 class BindingListModelList<E>
          This is the BindingListModel as a List to be used with Listbox, Grid, and DataBinder.
 class BindingListModelListModel<E>
          This is the BindingListModel as a ListModel to be used with Listbox, Grid, and DataBinder.
 class BindingListModelMap<K,V>
          This is the BindingListModel as a Map to be used with Listbox, Grid, and DataBinder.
 class BindingListModelSet<E>
          This is the BindingListModel as a Set to be used with Listbox, Grid, and DataBinder.
 

Fields in org.zkoss.zkplus.databind declared as ListModel
protected  ListModel<E> BindingListModelListModel._model
           
 

Methods in org.zkoss.zkplus.databind that return ListModel
 ListModel<E> BindingListModelListModel.getInnerModel()
           
 ListModel CollectionItem.getModelByOwner(Component comp)
           Returns the component model as ListModel
 

Constructors in org.zkoss.zkplus.databind with parameters of type ListModel
BindingListModelListModel(ListModel<E> model)
           
 

Uses of ListModel in org.zkoss.zul
 

Classes in org.zkoss.zul that implement ListModel
 class AbstractListModel<E>
          A skeletal implementation for ListModel and Selectable
 class ListModelArray<E>
          This is the ListModel as an Object array to be used with Listbox.
 class ListModelList<E>
          This is the ListModel as a List to be used with Listbox.
 class ListModelMap<K,V>
          This is the ListModel as a Map to be used with Listbox.
 class ListModelSet<E>
          This is the ListModel as a Set to be used with Listbox.
 class SimpleListModel<E>
          A simple implementation of ListModel.
 

Methods in org.zkoss.zul that return ListModel
<T> ListModel<T>
Listbox.getListModel()
          Returns the list model associated with this list box, or null if this list box is associated with a GroupsModel or not associated with any list data model.
<T> ListModel<T>
Grid.getListModel()
          Returns the list model associated with this grid, or null if this grid is associated with a GroupsModel or not associated with any list data model.
 ListModel<?> Radiogroup.getModel()
          Returns the list model associated with this radiogroup, or null if this radiogroup is not associated with any list data model.
 ListModel<?> Combobox.getModel()
          Returns the list model associated with this combobox, or null if this combobox is not associated with any list data model.
<T> ListModel<T>
Selectbox.getModel()
          Returns the model associated with this selectbox, or null if this selectbox is not associated with any list data model.
<T> ListModel<T>
Listbox.getModel()
          Returns the model associated with this list box, or null if this list box is not associated with any list data model.
<T> ListModel<T>
Grid.getModel()
          Returns the model associated with this grid, or null if this grid is not associated with any list data model.
 ListModel<E> SimpleListModel.getSubModel(java.lang.Object value, int nRows)
          Returns the subset of the list model data that matches the specified value.
 ListModel<E> ListSubModel.getSubModel(java.lang.Object value, int nRows)
          Returns the subset of list model data that the subset data is extract from combobox's list model data.
static
<T> ListModel<T>
ListModels.toListSubModel(ListModel<T> model)
          Returns a proxy instance of the given model that implements ListSubModel and ListModel interface.
static
<T> ListModel<T>
ListModels.toListSubModel(ListModel<T> model, java.util.Comparator<T> comparator, int nRows)
          Returns a proxy instance of the given model that implements ListSubModel and ListModel interface.
 

Methods in org.zkoss.zul with parameters of type ListModel
 void Selectbox.setModel(ListModel<?> model)
          Sets the list model associated with this selectbox.
 void Radiogroup.setModel(ListModel<?> model)
          Sets the list model associated with this radiogroup.
 void Listbox.setModel(ListModel<?> model)
          Sets the list model associated with this listbox.
 void Grid.setModel(ListModel<?> model)
          Sets the list model associated with this grid.
 void Combobox.setModel(ListModel<?> model)
          Sets the list model associated with this combobox.
static
<T> ListModel<T>
ListModels.toListSubModel(ListModel<T> model)
          Returns a proxy instance of the given model that implements ListSubModel and ListModel interface.
static
<T> ListModel<T>
ListModels.toListSubModel(ListModel<T> model, java.util.Comparator<T> comparator, int nRows)
          Returns a proxy instance of the given model that implements ListSubModel and ListModel interface.
 

Uses of ListModel in org.zkoss.zul.event
 

Methods in org.zkoss.zul.event that return ListModel
 ListModel ListDataEvent.getModel()
          Returns the list model that fires this event.
 

Constructors in org.zkoss.zul.event with parameters of type ListModel
ListDataEvent(ListModel model, int type, int index0, int index1)
          Contructor.
 

Uses of ListModel in org.zkoss.zul.impl
 

Classes in org.zkoss.zul.impl that implement ListModel
 class GroupsListModel<D,G,F>
          Encapulates GroupsModel as an instance of ListModel such that it is easier to handle by Listbox and Group.
 



Copyright © 2005-2011 Potix Corporation. All Rights Reserved. SourceForge.net Logo