1 | void setIncludesfile(File includesfile) {↵ | | 1 | void setIncludes(String includes) {↵
|
2 | usedMatchingTask = true;↵ | | 2 | defaultSetDefined = true;↵
|
3 | super.setIncludesfile(includesfile);↵ | | 3 | defaultSet.setIncludes(includes);↵
|
4 | }↵ | | 4 | }↵
|
|
5 | /**↵ | | 5 | /**↵
|
6 | * Sets the name of the file containing the includes patterns↵ | | 6 | * Sets the set of exclude patterns. Patterns may be separated by a comma↵
|
7 | .↵ | | 7 | * or a space.↵
|
8 | *↵ | | 8 | *↵
|
9 | * @param excludesfile A string containing the filename to fetch↵ | | 9 | * @param excludes the string containing the ↵
|
10 | * the include patterns from.↵ | | 10 | exclude patterns.↵
|
11 | */↵ | | 11 | */↵
|
12 | public void setExcludesfile(File excludesfile) {↵ | | 12 | public void setExcludes(String excludes) {↵
|
13 | usedMatchingTask = true;↵ | | 13 | defaultSetDefined = true;↵
|
14 | super.setExcludesfile(excludesfile);↵ | | 14 | defaultSet.setExcludes(excludes);↵
|
15 | }↵ | | 15 | }↵
|
|
16 | /**↵ | | 16 | /**↵
|
17 | * Sets case sensitivity of the file system↵ | | 17 | * Sets whether default exclusions should be used or not.↵
|
18 | *↵ | | 18 | *↵
|
19 | * @param isCaseSensitive "true"|"on"|"yes" if file system is case↵ | | 19 | * @param useDefaultExcludes "true"|"on"|"yes" when default exclusions↵
|
20 | * sensitive, "false"|"off"|"no" when not↵ | | 20 | * should be used, "false"|"off"|"no" when they↵
|
21 | .↵ | | 21 | * shouldn't be used.↵
|
22 | */↵ | | 22 | */↵
|
23 | public void setCaseSensitive(boolean isCaseSensitive) {↵ | | 23 | public void setDefaultexcludes(boolean ↵
|
24 | usedMatchingTask↵ | | 24 | useDefaultExcludes) {↵
|
25 | = true;↵ | | 25 | defaultSetDefined = true;↵
|
26 | super.setCaseSensitive(isCaseSensitive);↵ | | 26 | defaultSet.setDefaultexcludes(useDefaultExcludes);↵
|
27 | } | | 27 | }
|