com.ibm.as400.vaccess

Interface WorkingListener

  • All Superinterfaces:
    java.util.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 java.util.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

      Methods 
      Modifier and Type Method and Description
      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

        void startWorking(WorkingEvent event)
        Deprecated. 
        Invoked when a potentially long-running unit of work is about to begin.
        Parameters:
        event - The event.
      • stopWorking

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