< prev index next >

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

Print this page

        

*** 51,61 **** public class DeployParams { final List<RelativeFileSet> resources = new ArrayList<>(); String id; - String title; String vendor; String email; String description; String category; String licenseType; --- 51,60 ----
*** 182,195 **** void setParams(List<Param> params) { this.params = params; } - void setTitle(String title) { - this.title = title; - } - void setVendor(String vendor) { this.vendor = vendor; } void setEmail(String email) { --- 181,190 ----
*** 527,537 **** bundleParams.setEmail(email); bundleParams.setInstalldirChooser(installdirChooser); bundleParams.setCopyright(copyright); bundleParams.setApplicationCategory(category); bundleParams.setDescription(description); - bundleParams.setTitle(title); bundleParams.setJvmargs(jvmargs); bundleParams.setArguments(arguments); if (addModules != null && !addModules.isEmpty()) { --- 522,531 ----
< prev index next >