All Packages Class Hierarchy This Package Previous Next Index
Interface com.ibm.beans.util.ModelSelectable
- public interface interface ModelSelectable
- extends ItemSelectable, Model
The ModelSelectable interface describes a model where the data in
the model is selectable
- See Also:
- Model
-
deselect(Object)
- Removes the specified element from the selection.
-
select(Object)
- Adds the specified element to the selection.
-
selectAll()
- Adds all the elements in the model to the selection.
-
selectNone()
- Removes all the elements from the selection.
select
public abstract void select(Object newSelection)
- Adds the specified element to the selection.
- Parameters:
- newSelection - The object to be added to the selection.
selectAll
public abstract void selectAll()
- Adds all the elements in the model to the selection.
deselect
public abstract void deselect(Object newSelection)
- Removes the specified element from the selection.
- Parameters:
- newSelection - The object to be removed from the selection.
selectNone
public abstract void selectNone()
- Removes all the elements from the selection.
All Packages Class Hierarchy This Package Previous Next Index