Package com.subhajit.classbench

Examples of com.subhajit.classbench.Classpath


      final Set<String> classNames = new HashSet<String>();
      new TaskRunner(new ISwingRunnableWithProgress() {
        public void run(IProgress arg0) throws Throwable {
          classNames
              .addAll(ClasspathUtils
                  .getAllClasses(new Classpath(
                      classpathElements
                          .toArray(IConstants.ZERO_LENGTH_FILE_ARRAY))));
        }
      }, "Finding classes", "", classpathElements.size()).exec();
View Full Code Here


  public ClassnameSearchPlugin(ClassbenchContext ctx,
      DefaultMutableTreeNode nodes) throws IOException,
      ClassNotFoundException {
    super();
    this.nodes = nodes;
    this.classLoader = new Classpath(ctx.getFiles()).newClassLoader(Thread
        .currentThread().getContextClassLoader());
    classNames = new ArrayList<String>();
    initClasses();
    Collections.sort(classNames);
    initGui();
View Full Code Here

TOP

Related Classes of com.subhajit.classbench.Classpath

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.