|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.zkoss.zkplus.databind.BindingListModelListModel<E>
public class BindingListModelListModel<E>
This is the BindingListModel
as a ListModel
to be used with
Listbox
, Grid
,
and DataBinder
.
Add or remove the contents of this model as a ListModel would cause the associated Listbox or Grid to change accordingly.
Field Summary | |
---|---|
protected ListModel<E> |
_model
|
Constructor Summary | |
---|---|
BindingListModelListModel(ListModel<E> model)
|
|
BindingListModelListModel(ListModel<E> model,
boolean distinct)
|
Method Summary | |
---|---|
void |
addListDataListener(ListDataListener l)
Adds a listener to the list that's notified each time a change to the data model occurs. |
boolean |
addToSelection(E obj)
Add the specified object into selection. |
void |
clearSelection()
Change the selection to the empty set. |
E |
getElementAt(int index)
Returns the value at the specified index. |
ListModel<E> |
getInnerModel()
|
java.util.Set<E> |
getSelection()
Returns the current selection. |
int |
getSize()
Returns the length of the list. |
int[] |
indexesOf(java.lang.Object elm)
Returns indexes of the given object inside a ListModel. |
int |
indexOf(java.lang.Object obj)
Returns index of the given object inside a ListModel. |
boolean |
isDistinct()
Returns true if all objects inside this ListModel is distinct. |
boolean |
isMultiple()
Returns whether the current selection mode is multiple. |
boolean |
isSelected(java.lang.Object obj)
Returns whether an object is selected. |
boolean |
isSelectionEmpty()
Returns true if the selection is currently empty. |
boolean |
removeFromSelection(java.lang.Object obj)
Remove the specified object from selection. |
void |
removeListDataListener(ListDataListener l)
Removes a listener from the list that's notified each time a change to the data model occurs. |
void |
setMultiple(boolean multiple)
Sets the selection mode to be multiple. |
void |
setSelection(java.util.Collection<? extends E> selection)
Replace the current selection with the given set. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected ListModel<E> _model
Constructor Detail |
---|
public BindingListModelListModel(ListModel<E> model)
public BindingListModelListModel(ListModel<E> model, boolean distinct)
Method Detail |
---|
public int indexOf(java.lang.Object obj)
BindingListModel
indexOf
in interface BindingListModel<E>
public E getElementAt(int index)
ListModel
getElementAt
in interface ListModel<E>
public int getSize()
ListModel
getSize
in interface ListModel<E>
public void addListDataListener(ListDataListener l)
ListModel
addListDataListener
in interface ListModel<E>
public void removeListDataListener(ListDataListener l)
ListModel
removeListDataListener
in interface ListModel<E>
public ListModel<E> getInnerModel()
public java.util.Set<E> getSelection()
Selectable
getSelection
in interface Selectable<E>
public void setSelection(java.util.Collection<? extends E> selection)
Selectable
If this represents a change to the current selection then notify each ListDataListener, including UI.
setSelection
in interface Selectable<E>
public boolean isSelected(java.lang.Object obj)
Selectable
isSelected
in interface Selectable<E>
public boolean isSelectionEmpty()
Selectable
isSelectionEmpty
in interface Selectable<E>
public boolean addToSelection(E obj)
Selectable
If this represents a change to the current selection then notify each ListDataListener, including UI.
addToSelection
in interface Selectable<E>
obj
- the object to be as selection.
obj
is not part of the data, or was already selected.public boolean removeFromSelection(java.lang.Object obj)
Selectable
If this represents a change to the current selection then notify each ListDataListener, including UI.
removeFromSelection
in interface Selectable<E>
obj
- the object to be remove from selection.
public void clearSelection()
Selectable
If this represents a change to the current selection then notify each ListDataListener, including UI.
clearSelection
in interface Selectable<E>
public void setMultiple(boolean multiple)
Selectable
setMultiple
in interface Selectable<E>
public boolean isMultiple()
Selectable
isMultiple
in interface Selectable<E>
Selectable.setMultiple(boolean)
public int[] indexesOf(java.lang.Object elm)
BindingListModelExt
indexesOf
in interface BindingListModelExt<E>
elm
- the specified object
public boolean isDistinct()
BindingListModelExt
DataBinder
performance so there is no need
to scan the whole ListModel as long as find one.
isDistinct
in interface BindingListModelExt<E>
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |