1 | public void setSkipEmptyFilesets(boolean skip) {↵ | | 1 | public 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 | * Prevent the use of the addsourcefile atribute.↵ | | 7 | * ↵
|
8 | *↵ | | |
|
9 | * @ant.attribute ignore="true"↵ | | |
|
10 | * @param b A user supplied boolean we won't accept.↵ | | 8 | Set parallel.↵
|
| | | 9 | * This is not allowed, and it always throws a BuildException.↵
|
| | | 10 | * @param parallel ignored↵
|
| | | 11 | * @ant.attribute ignore="true"↵
|
11 | */↵ | | 12 | */↵
|
12 | public void setAddsourcefile(boolean b) {↵ | | 13 | public void setParallel(boolean parallel) {↵
|
13 | throw new BuildException(getTaskType()↵ | | 14 | throw new BuildException(getTaskType()↵
|
14 | + " doesn\'t support the addsourcefile attribute",↵ | | 15 | + " doesn\'t support the parallel attribute",↵
|
15 | getLocation()); | | 16 | getLocation());
|