All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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 getFiles();
    List getClasses();
    List getChildAndDescendantClasses();
    boolean isDescendantOf(PackageInfo other);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy