BowlerKernel
IFileChangeListener.java
Go to the documentation of this file.
1 package com.neuronrobotics.bowlerstudio.util;
2 
3 import java.io.File;
4 import java.nio.file.WatchEvent;
5 
6 // TODO: Auto-generated Javadoc
18 public interface IFileChangeListener {
19 
26  public void onFileChange(File fileThatChanged,WatchEvent event);
27 
31  public void onFileDelete(File fileThatIsDeleted);
32 
33 }
void onFileChange(File fileThatChanged, WatchEvent event)