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();

    InputStream getInputStream() throws IOException;

    String getClassName();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy