Package com.technophobia.substeps.scanner

Examples of com.technophobia.substeps.scanner.ClasspathScanner


    private SyntaxBuilder() {
    }


    public static List<Class<?>> getStepImplementationClasses(final ClassLoader classLoader, final String[] classpath) {
        final ClasspathScanner cpScanner = new ClasspathScanner();

        final List<Class<?>> implClassList = cpScanner.getClassesWithAnnotation(SubSteps.StepImplementations.class,
                classLoader, classpath);

        return implClassList;
    }
View Full Code Here

TOP

Related Classes of com.technophobia.substeps.scanner.ClasspathScanner

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.