Package pl.project13.core.util
Interface BuildFileChangeListener
- All Superinterfaces:
EventListener
-
Method Summary
Modifier and TypeMethodDescriptionvoidEvent will be fired when thenPropertiesFileGeneratorchanged the output file.
-
Method Details
-
changed
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
-