| |
|
| org.apache.tools.ant.Task org.apache.tools.ant.taskdefs.ManifestTask
ManifestTask | public class ManifestTask extends Task (Code) | | Creates a manifest file for inclusion in a JAR, Ant task wrapper
around
Manifest Manifest . This task can be used to write a
Manifest file, optionally replacing or updating an existing file.
since: Ant 1.5 |
ManifestTask | public ManifestTask()(Code) | | Default constructor
|
addConfiguredAttribute | public void addConfiguredAttribute(Manifest.Attribute attribute) throws ManifestException(Code) | | Add an attribute to the manifest - it is added to the main section.
Parameters: attribute - the attribute to be added. exception: ManifestException - if the attribute is not valid. |
setEncoding | public void setEncoding(String encoding)(Code) | | The encoding to use for reading in an existing manifest file
Parameters: encoding - the manifest file encoding. |
setFile | public void setFile(File f)(Code) | | The name of the manifest file to create/update.
Required if used as a task.
Parameters: f - the Manifest file to be written |
setMode | public void setMode(Mode m)(Code) | | Update policy: either "update" or "replace"; default is "replace".
Parameters: m - the mode value - update or replace. |
|
|
|