|
GWT 2.7.0 | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
T
- the data type of records in the listpublic interface SelectionModel<T>
A model for selection within a list.
Nested Class Summary | |
---|---|
static class |
SelectionModel.AbstractSelectionModel<T>
A default implementation of SelectionModel that provides listener
addition and removal. |
Method Summary | |
---|---|
HandlerRegistration |
addSelectionChangeHandler(SelectionChangeEvent.Handler handler)
Adds a SelectionChangeEvent handler. |
boolean |
isSelected(T object)
Check if an object is selected. |
void |
setSelected(T object,
boolean selected)
Set the selected state of an object and fire a SelectionChangeEvent if the selection has
changed. |
Methods inherited from interface com.google.gwt.event.shared.HasHandlers |
---|
fireEvent |
Methods inherited from interface com.google.gwt.view.client.ProvidesKey |
---|
getKey |
Method Detail |
---|
HandlerRegistration addSelectionChangeHandler(SelectionChangeEvent.Handler handler)
SelectionChangeEvent
handler.
addSelectionChangeHandler
in interface SelectionChangeEvent.HasSelectionChangedHandlers
handler
- the handler
boolean isSelected(T object)
object
- the object
void setSelected(T object, boolean selected)
SelectionChangeEvent
if the selection has
changed. Subclasses should not fire an event in the case where
selected is true and the object was already selected, or selected
is false and the object was not previously selected.
object
- the object to select or deselectselected
- true to select, false to deselect
|
GWT 2.7.0 | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |