ccs.utils
Interface FileDeathObserver


public interface FileDeathObserver

The interface required for an object which wishes to be notified when FileKiller has finished stomping a file.


Method Summary
 void fileKilled(java.io.File oldf, java.io.File usef, java.lang.Object token)
          Called by FileKiller when the file is dead.
 

Method Detail

fileKilled

void fileKilled(java.io.File oldf,
                java.io.File usef,
                java.lang.Object token)
Called by FileKiller when the file is dead.

Parameters:
oldf - The file that was to be killed.
usef - The file it got renamed to while being wiped (in the unlikely event of it being useful).
token - An object given to FileKiller to be passed back here; it can be anything the calling app would find convenient at this point.