src/jdk.jpackage/share/classes/jdk/jpackage/internal/DeployParams.java
branchJDK-8200758-branch
changeset 57099 9a85a7a076ad
parent 57097 6e5eb7855fe2
child 57106 ea870b9ce89a
equal deleted inserted replaced
57098:fd4868c5fca1 57099:9a85a7a076ad
    61     String version;
    61     String version;
    62     Boolean systemWide;
    62     Boolean systemWide;
    63     Boolean serviceHint;
    63     Boolean serviceHint;
    64     Boolean signBundle;
    64     Boolean signBundle;
    65     Boolean installdirChooser;
    65     Boolean installdirChooser;
    66     Boolean singleton;
       
    67 
    66 
    68     String applicationClass;
    67     String applicationClass;
    69 
    68 
    70     List<Param> params;
    69     List<Param> params;
    71     List<String> arguments; //unnamed arguments
    70     List<String> arguments; //unnamed arguments
   111         this.systemWide = systemWide;
   110         this.systemWide = systemWide;
   112     }
   111     }
   113 
   112 
   114     void setInstalldirChooser(Boolean installdirChooser) {
   113     void setInstalldirChooser(Boolean installdirChooser) {
   115         this.installdirChooser = installdirChooser;
   114         this.installdirChooser = installdirChooser;
   116     }
       
   117 
       
   118     void setSingleton(Boolean singleton) {
       
   119         this.singleton = singleton;
       
   120     }
   115     }
   121 
   116 
   122     void setSignBundle(Boolean signBundle) {
   117     void setSignBundle(Boolean signBundle) {
   123         this.signBundle = signBundle;
   118         this.signBundle = signBundle;
   124     }
   119     }
   533         bundleParams.setType(bundleType);
   528         bundleParams.setType(bundleType);
   534         bundleParams.setBundleFormat(targetFormat);
   529         bundleParams.setBundleFormat(targetFormat);
   535         bundleParams.setVendor(vendor);
   530         bundleParams.setVendor(vendor);
   536         bundleParams.setEmail(email);
   531         bundleParams.setEmail(email);
   537         bundleParams.setInstalldirChooser(installdirChooser);
   532         bundleParams.setInstalldirChooser(installdirChooser);
   538         bundleParams.setSingleton(singleton);
       
   539         bundleParams.setCopyright(copyright);
   533         bundleParams.setCopyright(copyright);
   540         bundleParams.setApplicationCategory(category);
   534         bundleParams.setApplicationCategory(category);
   541         bundleParams.setDescription(description);
   535         bundleParams.setDescription(description);
   542         bundleParams.setTitle(title);
   536         bundleParams.setTitle(title);
   543 
   537