Package com.mountainminds.eclemma.internal.core.instr

Examples of com.mountainminds.eclemma.internal.core.instr.ClassFilesStore


   * @throws JavaModelException
   *           thrown when a problem with the underlying Java model occures
   */
  public static IClassFiles[] getClassFiles(IJavaProject project)
      throws JavaModelException {
    final ClassFilesStore store = new ClassFilesStore();
    store.add(project);
    return store.getClassFiles();
  }
View Full Code Here


    store.add(project);
    return store.getClassFiles();
  }

  public ClassFilesStore getAllClassFiles() throws CoreException {
    ClassFilesStore store = allClassFiles;
    if (store == null) {
      store = new ClassFilesStore();
      store.add(JavaCore.create(ResourcesPlugin.getWorkspace().getRoot()));
      allClassFiles = store;
    }
    return store;
  }
View Full Code Here

TOP

Related Classes of com.mountainminds.eclemma.internal.core.instr.ClassFilesStore

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.