src/java/org/apache/ivy/ant/IvyDependencyExclude.java [52:67]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void setType(String type) {
        this.type = type;
    }

    public void setExt(String ext) {
        this.ext = ext;
    }

    public void setMatcher(String matcher) {
        this.matcher = matcher;
    }

    DefaultExcludeRule asRule(IvySettings settings) {
        String matcherName = (matcher == null) ? PatternMatcher.EXACT : matcher;
        String orgPattern = (org == null) ? PatternMatcher.ANY_EXPRESSION : org;
        String modulePattern = (module == null) ? PatternMatcher.ANY_EXPRESSION : module;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/java/org/apache/ivy/ant/IvyExclude.java [52:67]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void setType(String type) {
        this.type = type;
    }

    public void setExt(String ext) {
        this.ext = ext;
    }

    public void setMatcher(String matcher) {
        this.matcher = matcher;
    }

    DefaultExcludeRule asRule(IvySettings settings) {
        String matcherName = (matcher == null) ? PatternMatcher.EXACT : matcher;
        String orgPattern = (org == null) ? PatternMatcher.ANY_EXPRESSION : org;
        String modulePattern = (module == null) ? PatternMatcher.ANY_EXPRESSION : module;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



