data.events
Interface DataBasketListener
- All Known Implementing Classes:
- DataBasketAdapter, DataBasketTableModel
- public interface DataBasketListener
- extends EventListener
Listener that listens for DataBasketEvents.
- Since:
- v2.0
- Version:
- 2.0 19/08/1999
- Author:
- Steffen Zschaler
addedDBE
public void addedDBE(DataBasketEvent e)
- Called when a DataBasketEntry was added to the DataBasket.
- Override:
- Always.
- Parameters:
e
- an event object that describes the event.
removedDBE
public void removedDBE(DataBasketEvent e)
- Called when a DataBasketEntry was removed from the DataBasket.
- Override:
- Always.
- Parameters:
e
- an event object that describes the event.
dataBasketChanged
public void dataBasketChanged(DataBasketEvent e)
- Called when the DataBasket changed in a manner too complex for the two other types of events.
- Override:
- Always.
- Parameters:
e
- an event object that describes the event. (e.getAffectedEntry() == null
!)