< prev index next >

src/jdk.jpackage/windows/classes/jdk/jpackage/internal/WinAppBundler.java

Print this page




 202     public String getID() {
 203         return "windows.app";
 204     }
 205 
 206     @Override
 207     public String getBundleType() {
 208         return "IMAGE";
 209     }
 210 
 211     @Override
 212     public File execute(Map<String, ? super Object> params,
 213             File outputParentDir) throws PackagerException {
 214         return doBundle(params, outputParentDir, false);
 215     }
 216 
 217     @Override
 218     public boolean supported(boolean platformInstaller) {
 219         return true;
 220     }
 221 





 222 }


 202     public String getID() {
 203         return "windows.app";
 204     }
 205 
 206     @Override
 207     public String getBundleType() {
 208         return "IMAGE";
 209     }
 210 
 211     @Override
 212     public File execute(Map<String, ? super Object> params,
 213             File outputParentDir) throws PackagerException {
 214         return doBundle(params, outputParentDir, false);
 215     }
 216 
 217     @Override
 218     public boolean supported(boolean platformInstaller) {
 219         return true;
 220     }
 221 
 222     @Override
 223     public boolean isDefault() {
 224         return false;
 225     }
 226 
 227 }
< prev index next >