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

cucumber.runtime.io.Resource Maven / Gradle / Ivy

There is a newer version: 1.2.6
Show newest version
package cucumber.runtime.io;

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

public interface Resource {
    String getPath();

    String getAbsolutePath();

    InputStream getInputStream() throws IOException;

    String getClassName(String extension);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy