SalesPoint Framework v3.0

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

Method Summary
 void addedDBE(DataBasketEvent e)
          Called when a DataBasketEntry was added to the DataBasket.
 void dataBasketChanged(DataBasketEvent e)
          Called when the DataBasket changed in a manner too complex for the two other types of events.
 void removedDBE(DataBasketEvent e)
          Called when a DataBasketEntry was removed from the DataBasket.
 

Method Detail

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!)

SalesPoint Framework v3.0