Bundle-Name STRING
Header
-
Example:
Bundle-Name: My Bundle
-
Pattern:
.*
Bundle-Name
The Bundle-Name
header defines a short, human-readable name for the bundle. This name is intended for display in user interfaces and tools. If the Bundle-Name
is not set, it will default to the value of the Bundle-SymbolicName
header.
Example:
Bundle-Name: My Example Bundle
This header is optional but recommended for clarity and usability.
If the Bundle-Name is not set, it will default to the Bundle-SymbolicName.
//
// Use the same name for the bundle name as BSN when
// the bundle name is not set
//
if (main.getValue(BUNDLE_NAME) == null) {
main.putValue(BUNDLE_NAME, bsn);
}
TODO Needs review - AI Generated content