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