Großmarkt

market.event
Interface MarketEventListener

All Known Implementing Classes:
MarketEventAdapter, 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

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


notifyOnMarketNotClosing

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


marketOpened

public void marketOpened()
Invoked when the market opens.


marketClosed

public void marketClosed()
Invoked when the market closes.


timeAdvanced

public void timeAdvanced()
Invoked when the date changes.


workerInformationChanged

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


Großmarkt