Package com.buschmais.jqassistant.plugin.java.impl.store.visitor

Examples of com.buschmais.jqassistant.plugin.java.impl.store.visitor.ClassVisitor


  }

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

TOP

Related Classes of com.buschmais.jqassistant.plugin.java.impl.store.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.