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

cucumber.runtime.ClassFinder Maven / Gradle / Ivy

package cucumber.runtime;

import java.util.Collection;

public interface ClassFinder {
     Collection> getDescendants(Class parentType, String packageName);

     Class loadClass(String className) throws ClassNotFoundException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy