public boolean isSelected()

in src/main/java/org/apache/maven/plugins/clean/GlobSelector.java [97:100]


    public boolean isSelected(String pathname) {
        return (includes.length <= 0 || isMatched(pathname, includes))
                && (excludes.length <= 0 || !isMatched(pathname, excludes));
    }