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