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