public interface IActionEventHandler
Modifier and Type | Method and Description |
---|---|
void |
sendEventAboutToRenamedFile(java.io.File oldName,
java.io.File newName)
This is called when a file in a media directory is about to be renamed
|
void |
sendEventDeletedFile(java.io.File file)
Called when a file in the media directory is deleted
|
void |
sendEventNewFile(java.io.File file)
Called when a new file is created in the media directory
|
void |
sendEventRenamedFile(java.io.File oldName,
java.io.File newName)
This is called when a file in the media directory is renamed
|
void sendEventNewFile(java.io.File file) throws ActionException
file
- The file that was createdActionException
- Thrown if their are any problemsvoid sendEventDeletedFile(java.io.File file) throws ActionException
file
- The file what was deletedActionException
- Thrown if their are any problemsvoid sendEventRenamedFile(java.io.File oldName, java.io.File newName) throws ActionException
oldName
- The old name of the filenewName
- The new name of the fileActionException
- Thrown if their are any problemsvoid sendEventAboutToRenamedFile(java.io.File oldName, java.io.File newName) throws ActionException
oldName
- The old name of the filenewName
- The new name of the fileActionException
- Thrown if their are any problems