net.sourceforge.java.util.jobs.event
Interface IJobListener

All Superinterfaces:
EventListener
All Known Implementing Classes:
NotificationBar, SplashScreen

public interface IJobListener
extends EventListener

Event handler to react on status changes of IJobs executed in the JobManager context.

Author:
Sebastian Machhausen

Method Summary
 void jobDone(JobEvent event)
           Indicates that an IJob is done.
 void jobStarted(JobEvent event)
           Indicates that an IJob was started.
 void jobStatusChanged(JobEvent event)
           Indicates that the status of an IJob changed.
 

Method Detail

jobStarted

public void jobStarted(JobEvent event)

Indicates that an IJob was started.

Parameters:
event - the triggered JobEvent

jobDone

public void jobDone(JobEvent event)

Indicates that an IJob is done.

Parameters:
event - the triggered JobEvent

jobStatusChanged

public void jobStatusChanged(JobEvent event)

Indicates that the status of an IJob changed.

Parameters:
event - the triggered JobEvent