1 | public void setExecutable(String e) {↵ | | 1 | public void setExecutable(String e) {↵
|
2 | throw new BuildException(getTaskType()↵ | | 2 | throw new BuildException(getTaskType()↵
|
3 | + " doesn\'t support the executable attribute", getLocation());↵ | | 3 | + " doesn\'t support the executable attribute", getLocation());↵
|
4 | }↵ | | 4 | }↵
|
|
5 | /**↵ | | 5 | /**↵
|
6 | * Set the command.↵ | | 6 | * Set the executable.↵
|
7 | * This is not allowed for Chmod.↵ | | 7 | * This is not allowed↵
|
8 | * @param cmdl ignored.↵ | | |
|
9 | * @throws BuildException always.↵ | | 8 | , and it always throws a BuildException.↵
|
| | | 9 | * @param e ignored↵
|
10 | * @ant.attribute ignore="true"↵ | | 10 | * @ant.attribute ignore="true"↵
|
11 | */↵ | | 11 | */↵
|
12 | public void setCommand(Commandline cmdl) {↵ | | 12 | public void setCommand(String e) {↵
|
13 | throw new BuildException(getTaskType()↵ | | 13 | throw new BuildException(getTaskType()↵
|
14 | + " doesn\'t support the command attribute", getLocation()); | | 14 | + " doesn\'t support the command attribute", getLocation());
|