* Return a mutable dictionary of manifest headers
*/
public Dictionary<String, String> getHeaders() {
Hashtable<String, String> headers = new Hashtable<String, String>();
Attributes mainAttributes = manifest.getMainAttributes();
for (Object key : mainAttributes.keySet()) {
Name name = (Name) key;
String value = mainAttributes.getValue(name);
headers.put(name.toString(), value);
}
return headers;