Package kiyut.citra.event
Class ProgressAdapter
- java.lang.Object
-
- kiyut.citra.event.ProgressAdapter
-
- All Implemented Interfaces:
EventListener,ProgressListener
public class ProgressAdapter extends Object implements ProgressListener
The adapter which receives progress events. The methods in this class are empty; this class is provided as a convenience for easily creating listeners by extending this class and overriding only the methods of interest.- Author:
- Kiyut
-
-
Constructor Summary
Constructors Constructor Description ProgressAdapter()
-
Method Summary
All Methods Instance Methods Concrete 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
public void progressStarted(ProgressEvent evt)
Description copied from interface:ProgressListenerInvoked when the progress started.- Specified by:
progressStartedin interfaceProgressListener- Parameters:
evt- an object which describes the event
-
progressCompleted
public void progressCompleted(ProgressEvent evt)
Description copied from interface:ProgressListenerInvoked when the progress completed.- Specified by:
progressCompletedin interfaceProgressListener- Parameters:
evt- an object which describes the event
-
progressCancelled
public void progressCancelled(ProgressEvent evt)
Description copied from interface:ProgressListenerInvoked when the progress cancelled.- Specified by:
progressCancelledin interfaceProgressListener- Parameters:
evt- an object which describes the event
-
progressFailed
public void progressFailed(ProgressEvent evt)
Description copied from interface:ProgressListenerInvoked when the progress failed.- Specified by:
progressFailedin interfaceProgressListener- Parameters:
evt- an object which describes the event
-
-