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