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

htmlcompiler.pojos.compile.Task Maven / Gradle / Ivy

package htmlcompiler.pojos.compile;

import java.nio.file.Path;
import java.nio.file.WatchEvent;

public final class Task {
    public final WatchEvent.Kind type;
    public final Path path;

    public Task(final WatchEvent.Kind type, final Path path) {
        this.type = type;
        this.path = path;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy