equal
deleted
inserted
replaced
41 |
41 |
42 public class LinuxAppBundler extends AbstractImageBundler { |
42 public class LinuxAppBundler extends AbstractImageBundler { |
43 |
43 |
44 private static final ResourceBundle I18N = ResourceBundle.getBundle( |
44 private static final ResourceBundle I18N = ResourceBundle.getBundle( |
45 "jdk.jpackage.internal.resources.LinuxResources"); |
45 "jdk.jpackage.internal.resources.LinuxResources"); |
46 |
|
47 private static final String EXECUTABLE_NAME = "JavaAppLauncher"; |
|
48 |
46 |
49 public static final BundlerParamInfo<File> ICON_PNG = |
47 public static final BundlerParamInfo<File> ICON_PNG = |
50 new StandardBundlerParam<>( |
48 new StandardBundlerParam<>( |
51 I18N.getString("param.icon-png.name"), |
49 I18N.getString("param.icon-png.name"), |
52 I18N.getString("param.icon-png.description"), |
50 I18N.getString("param.icon-png.description"), |
213 APP_NAME, |
211 APP_NAME, |
214 APP_RESOURCES, |
212 APP_RESOURCES, |
215 ARGUMENTS, |
213 ARGUMENTS, |
216 CLASSPATH, |
214 CLASSPATH, |
217 JVM_OPTIONS, |
215 JVM_OPTIONS, |
218 JVM_PROPERTIES, |
|
219 MAIN_CLASS, |
216 MAIN_CLASS, |
220 MAIN_JAR, |
217 MAIN_JAR, |
221 PREFERENCES_ID, |
218 PREFERENCES_ID, |
222 VERSION, |
219 VERSION, |
223 VERBOSE |
220 VERBOSE |