public class BaseListAdapter<E> extends java.lang.Object implements BaseListListener<E>
BaseListListener
interface.Constructor and Description |
---|
BaseListAdapter() |
Modifier and Type | Method and Description |
---|---|
void |
itemAdded(ListItemEvent<E> e)
|
void |
listChanged(ListChangedEvent<E> e)
|
public void listChanged(ListChangedEvent<E> e)
BaseListListener.listChanged(com.mindfusion.common.ListChangedEvent<E>)
implementation.
Invoked when the list is changed.listChanged
in interface BaseListListener<E>
e
- A ListChangedEvent
object.public void itemAdded(ListItemEvent<E> e)
BaseListListener.itemAdded(com.mindfusion.common.ListItemEvent<E>)
implementation.
Invoked when an item is added to the list.itemAdded
in interface BaseListListener<E>
e
- A ListItemEvent
object.