Interface BuildFileChangeListener

All Superinterfaces:
EventListener

public interface BuildFileChangeListener extends EventListener
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changed(File file)
    Event will be fired when then PropertiesFileGenerator changed the output file.
  • Method Details

    • changed

      void changed(@Nonnull File file)
      Event will be fired when then PropertiesFileGenerator changed 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