cucumber.runtime.ClassFinder Maven / Gradle / Ivy
package cucumber.runtime;
import java.util.Collection;
public interface ClassFinder {
Collection> getDescendants(Class parentType, String packageName);
Class extends T> loadClass(String className) throws ClassNotFoundException;
}