Package pl.project13.core.util
Interface BuildFileChangeListener
-
- All Superinterfaces:
java.util.EventListener
public interface BuildFileChangeListener extends java.util.EventListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidchanged(java.io.File file)Event will be fired when thenPropertiesFileGeneratorchanged the output file.
-
-
-
Method Detail
-
changed
void changed(@Nonnull java.io.File file)Event will be fired when thenPropertiesFileGeneratorchanged the output file. A client who may want to implement that listener may want to perform other actions. E.g. {code} BuildContext buildContext = ... new BuildFileChangeListener() { void changed(@Nonnull File file) { buildContext.refresh(file); } } {code}- Parameters:
file- The output properties File that was changed by the generator
-
-