src/jdk.jpackage/share/classes/jdk/jpackage/internal/StandardBundlerParam.java
branchJDK-8200758-branch
changeset 57255 f686bda3b831
parent 57180 1d6f8a7c6d5a
child 57256 d7c27451f759
equal deleted inserted replaced
57254:c1b92a014e89 57255:f686bda3b831
   287                     (Class<List<String>>) (Object) List.class,
   287                     (Class<List<String>>) (Object) List.class,
   288                     params -> Collections.emptyList(),
   288                     params -> Collections.emptyList(),
   289                     (s, p) -> Arrays.asList(s.split("\n\n"))
   289                     (s, p) -> Arrays.asList(s.split("\n\n"))
   290             );
   290             );
   291 
   291 
   292     static final StandardBundlerParam<String> TITLE =
       
   293             new StandardBundlerParam<>(
       
   294                     I18N.getString("param.title.name"),
       
   295                     I18N.getString("param.title.description"),
       
   296                     BundleParams.PARAM_TITLE,
       
   297                     String.class,
       
   298                     APP_NAME::fetchFrom,
       
   299                     (s, p) -> s
       
   300             );
       
   301 
       
   302     // note that each bundler is likely to replace this one with
   292     // note that each bundler is likely to replace this one with
   303     // their own converter
   293     // their own converter
   304     static final StandardBundlerParam<String> VERSION =
   294     static final StandardBundlerParam<String> VERSION =
   305             new StandardBundlerParam<>(
   295             new StandardBundlerParam<>(
   306                     I18N.getString("param.version.name"),
   296                     I18N.getString("param.version.name"),