Package kiyut.citra.event
Interface ProgressListener
-
- All Superinterfaces:
EventListener
- All Known Implementing Classes:
ProgressAdapter
public interface ProgressListener extends EventListener
ProgressListener- Author:
- Kiyut
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidprogressCancelled(ProgressEvent evt)Invoked when the progress cancelled.voidprogressCompleted(ProgressEvent evt)Invoked when the progress completed.voidprogressFailed(ProgressEvent evt)Invoked when the progress failed.voidprogressStarted(ProgressEvent evt)Invoked when the progress started.
-
-
-
Method Detail
-
progressStarted
void progressStarted(ProgressEvent evt)
Invoked when the progress started.- Parameters:
evt- an object which describes the event
-
progressCompleted
void progressCompleted(ProgressEvent evt)
Invoked when the progress completed.- Parameters:
evt- an object which describes the event
-
progressCancelled
void progressCancelled(ProgressEvent evt)
Invoked when the progress cancelled.- Parameters:
evt- an object which describes the event
-
progressFailed
void progressFailed(ProgressEvent evt)
Invoked when the progress failed.- Parameters:
evt- an object which describes the event
-
-