Package com.buschmais.jqassistant.core.scanner.impl.visitor

Examples of com.buschmais.jqassistant.core.scanner.impl.visitor.ClassVisitor


    }

    @Override
    public TypeDescriptor scanFile(Store store, InputStreamSource streamSource) throws IOException {
        DescriptorResolverFactory resolverFactory = new DescriptorResolverFactory(store);
        ClassVisitor visitor = new ClassVisitor(new VisitorHelper(store, resolverFactory));
        new ClassReader(streamSource.openStream()).accept(visitor, 0);
        TypeDescriptor typeDescriptor = visitor.getTypeDescriptor();
        scannedClasses++;
        return typeDescriptor;
    }
View Full Code Here

TOP

Related Classes of com.buschmais.jqassistant.core.scanner.impl.visitor.ClassVisitor

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.