Package docking.widgets.table
Interface ObjectSelectedListener<T>
-
- Type Parameters:
T- the object type
public interface ObjectSelectedListener<T>An interface for clients to know when an object is selected and when the selection is cleared
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidobjectSelected(T t)When an object is select; null if the selection is cleared
-
-
-
Method Detail
-
objectSelected
void objectSelected(T t)
When an object is select; null if the selection is cleared- Parameters:
t- the object selected or null
-
-