net.datacrow.filerenamer
Interface IFileRenamerListener

All Known Implementing Classes:
FileRenamerDialog

public interface IFileRenamerListener

This listener can be updated on events from the FileRenamer.

Author:
Robert Jan van der Waals

Method Summary
 void notify(java.lang.Exception e)
          Notify of an exception.
 void notify(java.lang.String msg)
          Notify on a event.
 void notifyJobStarted()
          Notify the task has been started.
 void notifyJobStopped()
          Notify the task has been stopped.
 void notifyProcessed()
          Notify that a file has been renamed.
 void notifyTaskSize(int max)
          Notify of the amount of files to rename.
 

Method Detail

notify

void notify(java.lang.String msg)
Notify on a event.

Parameters:
msg -

notify

void notify(java.lang.Exception e)
Notify of an exception.

Parameters:
e -

notifyProcessed

void notifyProcessed()
Notify that a file has been renamed.


notifyTaskSize

void notifyTaskSize(int max)
Notify of the amount of files to rename.

Parameters:
max -

notifyJobStopped

void notifyJobStopped()
Notify the task has been stopped.


notifyJobStarted

void notifyJobStarted()
Notify the task has been started.