All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jfilter.FileWatcherEvent Maven / Gradle / Ivy

There is a newer version: 1.0.18
Show newest version
package com.jfilter;

import java.io.File;

/**
 * The event that occurs when file is modified
 */
public interface FileWatcherEvent {

    /**
     * Event occurs if file modified
     *
     * @param file modified file
     */
    void onEvent(File file);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy