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