
com.atlassian.clover.api.registry.PackageInfo Maven / Gradle / Ivy
package com.atlassian.clover.api.registry;
import java.util.List;
public interface PackageInfo {
String DEFAULT_PACKAGE_NAME = "default-pkg";
ProjectInfo getContainer();
String getName();
String getPath();
boolean isDefault();
boolean isEmpty();
List extends FileInfo> getFiles();
List extends ClassInfo> getClasses();
List extends ClassInfo> getChildAndDescendantClasses();
boolean isDescendantOf(PackageInfo other);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy