com.ibm.as400.vaccess
Interface WorkingListener

All Superinterfaces:
EventListener
All Known Implementing Classes:
WorkingCursorAdapter

Deprecated. Use Java Swing instead, along with the classes in package com.ibm.as400.access

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

Method Summary
 void startWorking(WorkingEvent event)
          Deprecated. Invoked when a potentially long-running unit of work is about to begin.
 void stopWorking(WorkingEvent event)
          Deprecated. Invoked when a potentially long-running unit of work has completed.
 

Method Detail

startWorking

public void startWorking(WorkingEvent event)
Deprecated. 
Invoked when a potentially long-running unit of work is about to begin.

Parameters:
event - The event.

stopWorking

public void stopWorking(WorkingEvent event)
Deprecated. 
Invoked when a potentially long-running unit of work has completed.

Parameters:
event - The event.