Großmarkt

market.event
Interface MarketEventListener

All Known Implementing Classes:
MarketEventAdapter, SPCustomer, SPListenable

public interface MarketEventListener

Listener interface that enables Objects to listen to market specific events and react on them.


Method Summary
 void marketClosed()
          Invoked when the market closes.
 void marketOpened()
          Invoked when the market opens.
 void notifyOnMarketClosing()
          Invoked when the manager announces closing-time.
 void notifyOnMarketNotClosing()
          Invoked when the manager cancels closing-time announcement.
 void timeAdvanced()
          Invoked when the date changes.
 void workerInformationChanged()
          Invoked when a job enters the warehouse queue or a warehouse worker logs on or off.
 

Method Detail

notifyOnMarketClosing

void notifyOnMarketClosing()
Invoked when the manager announces closing-time.


notifyOnMarketNotClosing

void notifyOnMarketNotClosing()
Invoked when the manager cancels closing-time announcement.


marketOpened

void marketOpened()
Invoked when the market opens.


marketClosed

void marketClosed()
Invoked when the market closes.


timeAdvanced

void timeAdvanced()
Invoked when the date changes.


workerInformationChanged

void workerInformationChanged()
Invoked when a job enters the warehouse queue or a warehouse worker logs on or off.


Großmarkt