Interface BuildFileChangeListener

  • All Superinterfaces:
    java.util.EventListener

    public interface BuildFileChangeListener
    extends java.util.EventListener
    • Method Detail

      • changed

        void changed​(@Nonnull
                     java.io.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