< prev index next >

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

Print this page

        

*** 287,306 **** (Class<List<String>>) (Object) List.class, params -> Collections.emptyList(), (s, p) -> Arrays.asList(s.split("\n\n")) ); - static final StandardBundlerParam<String> TITLE = - new StandardBundlerParam<>( - I18N.getString("param.title.name"), - I18N.getString("param.title.description"), - BundleParams.PARAM_TITLE, - String.class, - APP_NAME::fetchFrom, - (s, p) -> s - ); - // note that each bundler is likely to replace this one with // their own converter static final StandardBundlerParam<String> VERSION = new StandardBundlerParam<>( I18N.getString("param.version.name"), --- 287,296 ----
< prev index next >