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

Method Index

 o deselect(Object)
Removes the specified element from the selection.
 o select(Object)
Adds the specified element to the selection.
 o selectAll()
Adds all the elements in the model to the selection.
 o selectNone()
Removes all the elements from the selection.

Methods

 o select
 public abstract void select(Object newSelection)
Adds the specified element to the selection.

Parameters:
newSelection - The object to be added to the selection.
 o selectAll
 public abstract void selectAll()
Adds all the elements in the model to the selection.

 o deselect
 public abstract void deselect(Object newSelection)
Removes the specified element from the selection.

Parameters:
newSelection - The object to be removed from the selection.
 o selectNone
 public abstract void selectNone()
Removes all the elements from the selection.


All Packages  Class Hierarchy  This Package  Previous  Next  Index