1 | void setCommand(Commandline cmdl) {↵ | | 1 | void setCommand(String e) {↵
|
2 | throw new BuildException(getTaskType()↵ | | 2 | throw new BuildException(getTaskType()↵
|
3 | + " doesn\'t support the command attribute", getLocation());↵ | | 3 | + " doesn\'t support the command attribute", getLocation());↵
|
4 | }↵ | | 4 | }↵
|
|
5 | /**↵ | | 5 | /**↵
|
6 | * This is not allowed for Chmod.↵ | | 6 | * ↵
|
7 | * @param skip ignored.↵ | | |
|
8 | * @↵ | | 7 | Add source file.↵
|
9 | throws BuildException always.↵ | | 8 | * This is not allowed, and it always throws a BuildException.↵
|
| | | 9 | * @param b ignored↵
|
10 | * @ant.attribute ignore="true"↵ | | 10 | * @ant.attribute ignore="true"↵
|
11 | */↵ | | 11 | */↵
|
12 | public void setSkipEmptyFilesets(boolean skip) {↵ | | 12 | public void setAddsourcefile(boolean b) {↵
|
13 | throw new BuildException(getTaskType()↵ | | 13 | throw new BuildException(getTaskType()↵
|
14 | + " doesn\'t support the skipemptyfileset attribute", getLocation());↵ | | 14 | + " doesn\'t support the addsourcefile attribute", getLocation());↵
|
15 | }↵ | | 15 | }↵
|
|
16 | /**↵ | | 16 | /**↵
|
17 | * This is not allowed for Chmod.↵ | | 17 | * ↵
|
18 | * @param b ignored.↵ | | |
|
19 | * @↵ | | 18 | Set skip empty file sets.↵
|
20 | throws BuildException always.↵ | | 19 | * This is not allowed, and it always throws a BuildException.↵
|
| | | 20 | * @param skip ignored↵
|
21 | * @ant.attribute ignore="true"↵ | | 21 | * @ant.attribute ignore="true"↵
|
22 | */↵ | | 22 | */↵
|
23 | public void setAddsourcefile(boolean b) {↵ | | 23 | public void setSkipEmptyFilesets(boolean skip) {↵
|
24 | throw new BuildException(getTaskType()↵ | | 24 | throw new BuildException(getTaskType()↵
|
25 | + " doesn\'t support the addsource↵ | | 25 | + " doesn\'t support the "↵
|
26 | file attribute",↵ | | 26 | + "skipemptyfileset attribute",↵
|
27 | getLocation());↵ | | 27 | getLocation());↵
|
28 | | | 28 |
|