Package ca.cgjennings.io
Interface FileChangeListener
-
- All Known Implementing Classes:
DeckEditor
,PortraitPanel
public interface FileChangeListener
A listener for file change events.- Author:
- Chris Jennings
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
fileChanged(java.io.File f, FileChangeMonitor.ChangeType type)
This method is called when a change is detected in a file being monitored by aFileChangeMonitor
.
-
-
-
Method Detail
-
fileChanged
void fileChanged(java.io.File f, FileChangeMonitor.ChangeType type)
This method is called when a change is detected in a file being monitored by aFileChangeMonitor
. Note that this method will typically be called from a different thread than the one that requested notification.- Parameters:
f
- the file that has changed
-
-