if (null!=attributePropertyPrefix) {
int prefixLength = attributePropertyPrefix.length();
Project project = getProject();
Manifest.Section mainS = mf.getMainSection();
Hashtable properties = project.getProperties();
for (Enumeration pe = properties.keys(); pe.hasMoreElements();) {
String key = (String) pe.nextElement();
if (key.startsWith(attributePropertyPrefix)) {
String attrName = key.substring(prefixLength);
String attrValue = (String) properties.get(key);
if(!BUNDLE_EMPTY_STRING.equals(attrValue)) {