
com.atlassian.clover.api.registry.ProjectInfo Maven / Gradle / Ivy
Go to download
Clover is an award winning code coverage and testing tool for Java.
It integrates easily with Maven (1 and 2), Ant, Eclipse and IntelliJ-IDEA.
package com.atlassian.clover.api.registry;
import java.util.List;
public interface ProjectInfo {
List getAllPackages();
PackageInfo getPackage(String name);
String getName();
boolean isEmpty();
ClassInfo getClass(String fqcn);
FileInfo getFile(String pkgPath);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy