All Packages Class Hierarchy This Package Previous Next Index
Interface com.ibm.as400.vaccess.WorkingListener
- public interface WorkingListener
- extends EventListener
The WorkingListener interface provides a listener interface
for working events. This is useful for graphical user
interfaces that need to give the user some feedback that
work is being done.
- See Also:
- WorkingEvent, WorkingCursorAdapter
-
startWorking(WorkingEvent)
- Invoked when a potentially long-running unit of work
is about to begin.
-
stopWorking(WorkingEvent)
- Invoked when a potentially long-running unit of work
has completed.
startWorking
public abstract void startWorking(WorkingEvent event)
- Invoked when a potentially long-running unit of work
is about to begin.
- Parameters:
- event - The event.
stopWorking
public abstract void stopWorking(WorkingEvent event)
- Invoked when a potentially long-running unit of work
has completed.
- Parameters:
- event - The event.
All Packages Class Hierarchy This Package Previous Next Index