org.apache.tools.ant.taskdefs
public abstract class Unpack extends Task
Since: Ant 1.5
| Field Summary | |
|---|---|
| protected File | dest |
| protected File | source |
| Method Summary | |
|---|---|
| void | execute() |
| protected abstract void | extract() |
| protected abstract String | getDefaultExtension() |
| void | setDest(String dest) |
| void | setDest(File dest)
The destination file or directory; optional. |
| void | setSrc(String src) |
| void | setSrc(File src)
The file to expand; required. |
Deprecated: setDest(String) is deprecated and is replaced with setDest(File) to make Ant's Introspection mechanism do the work and also to encapsulate operations on the type in its own class.
UNKNOWN: ignore="true"
Parameters: dest destination file or directory
Deprecated: setSrc(String) is deprecated and is replaced with setSrc(File) to make Ant's Introspection mechanism do the work and also to encapsulate operations on the type in its own class.
UNKNOWN: ignore="true"
Parameters: src file to expand