1 | void setSkipEmptyFilesets(boolean skip) {↵ | | 1 | void setSkipEmptyFilesets(boolean skip) {↵
|
2 | throw new BuildException(getTaskType()↵ | | 2 | throw new BuildException(getTaskType()↵
|
3 | + " doesn\'t support the "↵ | | 3 | + " doesn\'t support the ↵
|
4 | + "skipemptyfileset attribute",↵ | | |
|
5 | getLocation());↵ | | |
|
6 | }↵ | | |
|
|
7 | /**↵ | | |
|
8 | * Prevent the use of the addsourcefile atribute.↵ | | |
|
9 | *↵ | | |
|
10 | * @ant.attribute ignore="true"↵ | | |
|
11 | * @param b A user supplied boolean we won't accept.↵ | | 4 | skipemptyfileset attribute", getLocation());↵
|
| | | 5 | }↵
|
|
| | | 6 | /**↵
|
| | | 7 | * This is not allowed for Chmod.↵
|
| | | 8 | * @param b ignored.↵
|
| | | 9 | * @throws BuildException always.↵
|
| | | 10 | * @ant.attribute ignore="true"↵
|
12 | */↵ | | 11 | */↵
|
13 | public void setAddsourcefile(boolean b) {↵ | | 12 | public void setAddsourcefile(boolean b) {↵
|
14 | throw new BuildException(getTaskType()↵ | | 13 | throw new BuildException(getTaskType()↵
|
15 | + " doesn\'t support the addsourcefile attribute", getLocation());↵ | | 14 | + " doesn\'t support the addsourcefile attribute", getLocation());↵
|
16 | | | 15 |
|