# # Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved. # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # # This code is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License version 2 only, as # published by the Free Software Foundation. Oracle designates this # particular file as subject to the "Classpath" exception as provided # by Oracle in the LICENSE file that accompanied this code. # # This code is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License # version 2 for more details (a copy is included in the LICENSE file that # accompanied this code). # # You should have received a copy of the GNU General Public License version # 2 along with this work; if not, write to the Free Software Foundation, # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. # # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA # or visit www.oracle.com if you need additional information or have any # questions. # # Translators please note do not translate the options themselves java.launcher.opt.header = Usage: {0} [options] class [args...]\n\ \ (to execute a class)\n or {0} [options] -jar jarfile [args...]\n\ \ (to execute a jar file)\n\ \ or {0} [options] -mp -m [/] [args...]\n\ \ (to execute the main class in a module)\n\ where options include:\n java.launcher.opt.datamodel =\ -d{0}\t use a {0}-bit data model if available\n java.launcher.opt.vmselect =\ {0}\t to select the "{1}" VM\n java.launcher.opt.hotspot =\ {0}\t is a synonym for the "{1}" VM [deprecated]\n java.launcher.ergo.message1 =\ The default VM is {0} java.launcher.ergo.message2 =\ because you are running on a server-class machine.\n # Translators please note do not translate the options themselves java.launcher.opt.footer =\ -cp \n\ \ -classpath \n\ \ A {0} separated list of directories, JAR archives,\n\ \ and ZIP archives to search for class files.\n\ \ -mp \n\ \ -modulepath ...\n\ \ A {0} separated list of directories, each directory\n\ \ is a directory of modules.\n\ \ -upgrademodulepath ...\n\ \ A {0} separated list of directories, each directory\n\ \ is a directory of modules that replace upgradeable\n\ \ modules in the runtime image\n\ \ -m [/]\n\ \ the initial module to resolve, and the name of the main class\n\ \ to execute if not specified by the module\n\ \ -addmods [,...]\n\ \ root modules to resolve in addition to the initial module\n\ \ -limitmods [,...]\n\ \ limit the universe of observable modules\n\ \ -listmods[:[,...]]\n\ \ list the observable modules and exit\n\ \ --dry-run create VM but do not execute main method.\n\ \ This --dry-run option may be useful for validating the\n\ \ command-line options such as the module system configuration.\n\ \ -D=\n\ \ set a system property\n\ \ -verbose:[class|gc|jni]\n\ \ enable verbose output\n\ \ -version print product version and exit\n\ \ -showversion print product version and continue\n\ \ -? -help print this help message\n\ \ -X print help on non-standard options\n\ \ -ea[:...|:]\n\ \ -enableassertions[:...|:]\n\ \ enable assertions with specified granularity\n\ \ -da[:...|:]\n\ \ -disableassertions[:...|:]\n\ \ disable assertions with specified granularity\n\ \ -esa | -enablesystemassertions\n\ \ enable system assertions\n\ \ -dsa | -disablesystemassertions\n\ \ disable system assertions\n\ \ -agentlib:[=]\n\ \ load native agent library , e.g. -agentlib:jdwp\n\ \ see also -agentlib:jdwp=help\n\ \ -agentpath:[=]\n\ \ load native agent library by full pathname\n\ \ -javaagent:[=]\n\ \ load Java programming language agent, see java.lang.instrument\n\ \ -splash:\n\ \ show splash screen with specified image\n\ \ HiDPI scaled image is also supported\n\ \ For a non scaled image file image.ext below are the supported scaled image names\n\ \ If screen scale is integer number e.g. 2: image@2x.ext \n\ \ If screen scale is float value e.g. 1.25: image@125pct.ext\n\ \ @ read options from the specified file\n\ See http://www.oracle.com/technetwork/java/javase/documentation/index.html for more details. # Translators please note do not translate the options themselves java.launcher.X.usage=\ \ -Xmixed mixed mode execution (default)\n\ \ -Xint interpreted mode execution only\n\ \ -Xbootclasspath/a:\n\ \ append to end of bootstrap class path\n\ \ -Xdiag show additional diagnostic messages\n\ \ -Xdiag:resolver show resolver diagnostic messages\n\ \ -Xnoclassgc disable class garbage collection\n\ \ -Xloggc: log GC status to a file with time stamps\n\ \ -Xbatch disable background compilation\n\ \ -Xms set initial Java heap size\n\ \ -Xmx set maximum Java heap size\n\ \ -Xss set java thread stack size\n\ \ -Xprof output cpu profiling data\n\ \ -Xfuture enable strictest checks, anticipating future default\n\ \ -Xrs reduce use of OS signals by Java/VM (see documentation)\n\ \ -Xcheck:jni perform additional checks for JNI functions\n\ \ -Xshare:off do not attempt to use shared class data\n\ \ -Xshare:auto use shared class data if possible (default)\n\ \ -Xshare:on require using shared class data, otherwise fail.\n\ \ -XshowSettings show all settings and continue\n\ \ -XshowSettings:all\n\ \ show all settings and continue\n\ \ -XshowSettings:vm show all vm related settings and continue\n\ \ -XshowSettings:properties\n\ \ show all property settings and continue\n\ \ -XshowSettings:locale\n\ \ show all locale related settings and continue\n\ \ -XaddReads:=(,)*\n\ \ reads other modules,\n\ \ regardless of module declaration\n\ \ -XaddExports:/=(,)*\n\ \ exports to other modules,\n\ \ regardless of module declaration\n\ \ -Xpatch:=({0})*\n\ \ Override or augment a module with classes and resources\n\ \ in JAR files or directories\n\ \ -Xdisable-@files disable further argument file expansion\n\n\ The -X options are non-standard and subject to change without notice.\n # Translators please note do not translate the options themselves java.launcher.X.macosx.usage=\ \n\ The following options are Mac OS X specific:\n\ \ -XstartOnFirstThread\n\ \ run the main() method on the first (AppKit) thread\n\ \ -Xdock:name=\n\ \ override default application name displayed in dock\n\ \ -Xdock:icon=\n\ \ override default icon displayed in dock\n\n java.launcher.cls.error1=\ Error: Could not find or load main class {0} java.launcher.cls.error2=\ Error: Main method is not {0} in class {1}, please define the main method as:\n\ \ public static void main(String[] args) java.launcher.cls.error3=\ Error: Main method must return a value of type void in class {0}, please \n\ define the main method as:\n\ \ public static void main(String[] args) java.launcher.cls.error4=\ Error: Main method not found in class {0}, please define the main method as:\n\ \ public static void main(String[] args)\n\ or a JavaFX application class must extend {1} java.launcher.cls.error5=\ Error: JavaFX runtime components are missing, and are required to run this application java.launcher.jar.error1=\ Error: An unexpected error occurred while trying to open file {0} java.launcher.jar.error2=manifest not found in {0} java.launcher.jar.error3=no main manifest attribute, in {0} java.launcher.init.error=initialization error java.launcher.javafx.error1=\ Error: The JavaFX launchApplication method has the wrong signature, it\n\ must be declared static and return a value of type void java.launcher.module.error1=\ module {0} does not have a MainClass attribute, use -m / java.launcher.module.error2=\ Error: Could not find or load main class {0} in module {1}