net.java.joglutils.msg.test
Interface ProgressListener<IDENT>


public interface ProgressListener<IDENT>

Provides notification of upload or download progress. The IDENT type is that used by the client to identify the particular element (image) being operated upon.

Author:
Kenneth Russell

Method Summary
 void progressEnd(ProgressEvent<IDENT> evt)
          Ends progress notification for a particular item which is identified by the ProgressEvent.
 void progressStart(ProgressEvent<IDENT> evt)
          Begins progress notification for a particular item which is identified by the ProgressEvent.
 void progressUpdate(ProgressEvent<IDENT> evt)
          Updates progress notification for a particular item which is identified by the ProgressEvent.
 

Method Detail

progressStart

void progressStart(ProgressEvent<IDENT> evt)
Begins progress notification for a particular item which is identified by the ProgressEvent. NOTE: this may be called multiple times; clients must handle this case.


progressUpdate

void progressUpdate(ProgressEvent<IDENT> evt)
Updates progress notification for a particular item which is identified by the ProgressEvent.


progressEnd

void progressEnd(ProgressEvent<IDENT> evt)
Ends progress notification for a particular item which is identified by the ProgressEvent.