1 | void setAddsourcefile(boolean b) {↵ | | 1 | void setSkipEmptyFilesets(boolean skip) {↵
|
2 | throw new BuildException(getTaskType()↵ | | 2 | throw new BuildException(getTaskType()↵
|
3 | + " doesn\'t support the addsourcefile attribute", getLocation());↵ | | 3 | + " doesn\'t support the skipemptyfileset attribute", getLocation());↵
|
4 | }↵ | | 4 | }↵
|
|
5 | /**↵ | | 5 | /**↵
|
6 | * Set skip empty file sets.↵ | | 6 | * ↵
|
7 | * This is not allowed, and it always ↵ | | 7 | This is not allowed for Chmod.↵
|
| | | 8 | * @param b ignored.↵
|
8 | throws a BuildException.↵ | | 9 | * @throws BuildException↵
|
9 | * @param skip ignored↵ | | 10 | always.↵
|
10 | * @ant.attribute ignore="true"↵ | | 11 | * @ant.attribute ignore="true"↵
|
11 | */↵ | | 12 | */↵
|
12 | public void setSkipEmptyFilesets(boolean skip) {↵ | | 13 | public void setAddsourcefile(boolean b) {↵
|
13 | throw new BuildException(getTaskType()↵ | | 14 | throw new BuildException(getTaskType()↵
|
14 | + " doesn\'t support the "↵ | | 15 | + " doesn\'t support the ↵
|
15 | + "skipemptyfileset attribute",↵ | | 16 | addsourcefile attribute",↵
|
16 | getLocation());↵ | | 17 | getLocation());↵
|
17 | | | 18 |
|