io.cucumber.core.backend.Lookup Maven / Gradle / Ivy
The newest version!
package io.cucumber.core.backend;
import org.apiguardian.api.API;
@API(status = API.Status.STABLE)
public interface Lookup {
/**
* Provides an instance of a glue class.
*
* @param glueClass type of instance to be created.
* @param type of Glue class
* @return new instance of type T
*/
T getInstance(Class glueClass);
}