Modifier and Type | Class and Description |
---|---|
static class |
ManifestTask.Mode
Helper class for Manifest's mode attribute.
|
Modifier and Type | Field and Description |
---|---|
static String |
VALID_ATTRIBUTE_CHARS
Specifies the valid characters which can be used in attribute names.
|
Constructor and Description |
---|
ManifestTask()
Default constructor
|
Modifier and Type | Method and Description |
---|---|
void |
addConfiguredAttribute(Manifest.Attribute attribute)
Add an attribute to the manifest - it is added to the main section.
|
void |
addConfiguredSection(Manifest.Section section)
Add a section to the manifest
|
void |
execute()
Create or update the Manifest when used as a task.
|
void |
setEncoding(String encoding)
The encoding to use for reading in an existing manifest file
|
void |
setFile(File f)
The name of the manifest file to create/update.
|
void |
setFlattenAttributes(boolean b)
Whether to flatten multi-valued attributes (i.e.
|
void |
setMergeClassPathAttributes(boolean b)
Whether to merge Class-Path attributes.
|
void |
setMode(ManifestTask.Mode m)
Update policy: either "update" or "replace"; default is "replace".
|
bindToOwner, getOwningTarget, getRuntimeConfigurableWrapper, getTaskName, getTaskType, getWrapper, handleErrorFlush, handleErrorOutput, handleFlush, handleInput, handleOutput, init, isInvalid, log, log, log, log, maybeConfigure, perform, reconfigure, setOwningTarget, setRuntimeConfigurableWrapper, setTaskName, setTaskType
clone, getDescription, getLocation, getProject, setDescription, setLocation, setProject
public static final String VALID_ATTRIBUTE_CHARS
public void addConfiguredAttribute(Manifest.Attribute attribute) throws ManifestException
attribute
- the attribute to be added.ManifestException
- if the attribute is not valid.public void addConfiguredSection(Manifest.Section section) throws ManifestException
section
- the manifest section to be addedManifestException
- if the section is not valid.public void execute() throws BuildException
execute
in class Task
BuildException
- if the manifest cannot be written.public void setEncoding(String encoding)
encoding
- the manifest file encoding.public void setFile(File f)
f
- the Manifest file to be writtenpublic void setFlattenAttributes(boolean b)
public void setMergeClassPathAttributes(boolean b)
public void setMode(ManifestTask.Mode m)
m
- the mode value - update or replace.