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

com.buschmais.jqassistant.plugin.common.api.scanner.filesystem.FileResource Maven / Gradle / Ivy

The newest version!
package com.buschmais.jqassistant.plugin.common.api.scanner.filesystem;

import java.io.IOException;
import java.io.InputStream;

/**
 * Represents a file resource.
 */
public interface FileResource extends Resource {

    InputStream createStream() throws IOException;

    java.io.File getFile() throws IOException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy