< prev index next >

src/jdk.jpackage/macosx/classes/jdk/jpackage/internal/MacAppStoreBundler.java

Print this page




 306             if (re.getCause() instanceof ConfigException) {
 307                 throw (ConfigException) re.getCause();
 308             } else {
 309                 throw new ConfigException(re);
 310             }
 311         }
 312     }
 313 
 314     @Override
 315     public File execute(Map<String, ? super Object> params,
 316             File outputParentDir) throws PackagerException {
 317         return bundle(params, outputParentDir);
 318     }
 319 
 320     @Override
 321     public boolean supported(boolean runtimeInstaller) {
 322         // return (!runtimeInstaller &&
 323         //         Platform.getPlatform() == Platform.MAC);
 324         return false; // mac-app-store not yet supported
 325     }






 326 }


 306             if (re.getCause() instanceof ConfigException) {
 307                 throw (ConfigException) re.getCause();
 308             } else {
 309                 throw new ConfigException(re);
 310             }
 311         }
 312     }
 313 
 314     @Override
 315     public File execute(Map<String, ? super Object> params,
 316             File outputParentDir) throws PackagerException {
 317         return bundle(params, outputParentDir);
 318     }
 319 
 320     @Override
 321     public boolean supported(boolean runtimeInstaller) {
 322         // return (!runtimeInstaller &&
 323         //         Platform.getPlatform() == Platform.MAC);
 324         return false; // mac-app-store not yet supported
 325     }
 326 
 327     @Override
 328     public boolean isDefault() {
 329         return false;
 330     }
 331 
 332 }
< prev index next >