Großmarkt

market.event
Class MarketEventAdapter

java.lang.Object
  |
  +--market.event.MarketEventAdapter
All Implemented Interfaces:
MarketEventListener, Serializable

public class MarketEventAdapter
extends Object
implements MarketEventListener, Serializable

Convenience method that implements MarketEventListener with empty methods.

See Also:
Serialized Form

Constructor Summary
MarketEventAdapter()
           
 
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.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MarketEventAdapter

public MarketEventAdapter()
Method Detail

notifyOnMarketClosing

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

Specified by:
notifyOnMarketClosing in interface MarketEventListener

notifyOnMarketNotClosing

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

Specified by:
notifyOnMarketNotClosing in interface MarketEventListener

marketOpened

public void marketOpened()
Invoked when the market opens.

Specified by:
marketOpened in interface MarketEventListener

marketClosed

public void marketClosed()
Invoked when the market closes.

Specified by:
marketClosed in interface MarketEventListener

timeAdvanced

public void timeAdvanced()
Invoked when the date changes.

Specified by:
timeAdvanced in interface MarketEventListener

workerInformationChanged

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

Specified by:
workerInformationChanged in interface MarketEventListener

Großmarkt