org.salespointframework.core.data.events
Class DataBasketEvent

java.lang.Object
  extended by java.util.EventObject
      extended by org.salespointframework.core.data.events.DataBasketEvent
All Implemented Interfaces:
java.io.Serializable

public class DataBasketEvent
extends java.util.EventObject

An event that indicates a change in a DataBasket's contents.

Since:
v2.0
Version:
2.0 19/08/1999
Author:
Steffen Zschaler
See Also:
Serialized Form

Field Summary
private  DataBasketEntry m_dbeEntry
          The DataBasketEntry that was affected by the change.
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
DataBasketEvent(DataBasket dbSource, DataBasketEntry dbe)
          Create a new DataBasketEvent.
 
Method Summary
 DataBasketEntry getAffectedEntry()
          Get the affected DataBasketEntry.
 
Methods inherited from class java.util.EventObject
getSource, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

m_dbeEntry

private DataBasketEntry m_dbeEntry
The DataBasketEntry that was affected by the change.

Constructor Detail

DataBasketEvent

public DataBasketEvent(DataBasket dbSource,
                       DataBasketEntry dbe)
Create a new DataBasketEvent.

Parameters:
dbSource - the DataBasket that triggers the event.
dbe - the affected DataBasketEntry.
Method Detail

getAffectedEntry

public DataBasketEntry getAffectedEntry()
Get the affected DataBasketEntry.