< prev index next >

src/jdk.jpackage/share/classes/jdk/jpackage/internal/BundleParams.java

Print this page

        

*** 56,65 **** --- 56,68 ---- public static final String PARAM_VENDOR = "vendor"; // String - email name and email, only used for debian */ public static final String PARAM_EMAIL = "email"; + // String - vendor <email>, only used for debian */ + public static final String PARAM_MAINTAINER = "maintainer"; + /* String - Copyright. Used on Mac */ public static final String PARAM_COPYRIGHT = "copyright"; // String - GUID on windows for MSI, CFBundleIdentifier on Mac // If not compatible with requirements then bundler either do not bundle
*** 76,88 **** // String - Application category. Used at least on Mac/Linux. // Value is platform specific public static final String PARAM_CATEGORY = "applicationCategory"; - // String - Optional short application - public static final String PARAM_TITLE = "title"; - // String - Optional application description. Used by MSI and on Linux public static final String PARAM_DESCRIPTION = "description"; // String - License type. Needed on Linux (rpm) public static final String PARAM_LICENSE_TYPE = "licenseType"; --- 79,88 ----
*** 188,205 **** public String getPreferencesID() { return fetchParam(PREFERENCES_ID); } - public String getTitle() { - return fetchParam(TITLE); - } - - public void setTitle(String title) { - putUnlessNull(PARAM_TITLE, title); - } - public String getApplicationClass() { return fetchParam(MAIN_CLASS); } public void setApplicationClass(String applicationClass) { --- 188,197 ----
< prev index next >