1 #
   2 # Copyright (c) 2010, 2019, Oracle and/or its affiliates. All rights reserved.
   3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4 #
   5 # This code is free software; you can redistribute it and/or modify it
   6 # under the terms of the GNU General Public License version 2 only, as
   7 # published by the Free Software Foundation.  Oracle designates this
   8 # particular file as subject to the "Classpath" exception as provided
   9 # by Oracle in the LICENSE file that accompanied this code.
  10 #
  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 err.prefix=Error:
  27 
  28 err.bad.constant.pool=error while reading constant pool for {0}: {1}
  29 err.class.not.found=class not found: {0}
  30 err.crash=A serious internal error has occurred: {0}\nPlease file a bug report, and include the following information:\n{1}
  31 err.end.of.file=unexpected end of file while reading {0}
  32 err.file.not.found=file not found: {0}
  33 err.incompatible.options=bad combination of options: {0}
  34 err.internal.error=internal error: {0} {1} {2}
  35 err.invalid.arg.for.option=invalid argument for option: {0}
  36 err.ioerror=IO error reading {0}: {1}
  37 err.missing.arg=no value given for {0}
  38 err.no.classes.specified=no classes specified
  39 err.not.standard.file.manager=can only specify class files when using a standard file manager
  40 err.invalid.use.of.option=invalid use of option: {0}
  41 err.unknown.option=unknown option: {0}
  42 err.no.SourceFile.attribute=no SourceFile attribute
  43 err.source.file.not.found=source file not found
  44 err.bad.innerclasses.attribute=bad InnerClasses attribute for {0}
  45 err.nomem=Insufficient memory. To increase memory use -J-Xmx option.
  46 err.cant.find.module=Cannot find module {0}
  47 err.cant.find.module.ex=Problem finding module {0}: {1}
  48 
  49 main.usage.summary=\
  50 Usage: {0} <options> <classes>\n\
  51 use --help for a list of possible options
  52 
  53 warn.prefix=Warning:
  54 warn.unexpected.class=File {0} does not contain class {1}
  55 
  56 note.prefix=Note:
  57 
  58 main.usage.summary=\
  59 Usage: {0} <options> <classes>\n\
  60 use --help for a list of possible options
  61 
  62 main.usage=\
  63 Usage: {0} <options> <classes>\n\
  64 where possible options include:
  65 
  66 
  67 main.opt.help=\
  68 \  -? -h --help -help               Print this help message
  69 
  70 main.opt.version=\
  71 \  -version                         Version information
  72 
  73 main.opt.v=\
  74 \  -v  -verbose                     Print additional information
  75 
  76 main.opt.l=\
  77 \  -l                               Print line number and local variable tables
  78 
  79 main.opt.public=\
  80 \  -public                          Show only public classes and members
  81 
  82 main.opt.protected=\
  83 \  -protected                       Show protected/public classes and members
  84 
  85 main.opt.package=\
  86 \  -package                         Show package/protected/public classes\n\
  87 \                                   and members (default)
  88 
  89 main.opt.p=\
  90 \  -p  -private                     Show all classes and members
  91 
  92 main.opt.c=\
  93 \  -c                               Disassemble the code
  94 
  95 main.opt.s=\
  96 \  -s                               Print internal type signatures
  97 
  98 main.opt.class_path=\
  99 \  --class-path <path>              Specify where to find user class files
 100 
 101 main.opt.classpath=\
 102 \  -classpath <path>                Specify where to find user class files
 103 
 104 main.opt.cp=\
 105 \  -cp <path>                       Specify where to find user class files
 106 
 107 main.opt.bootclasspath=\
 108 \  -bootclasspath <path>            Override location of bootstrap class files
 109 
 110 main.opt.upgrade_module_path=\
 111 \  --upgrade-module-path <path>     Specify where to find upgradeable modules
 112 
 113 main.opt.system=\
 114 \  --system <jdk>                   Specify where to find system modules
 115 
 116 main.opt.module_path=\
 117 \  --module-path <path>             Specify where to find application modules
 118 
 119 main.opt.multi_release=\
 120 \  --multi-release <version>        Specify the version to use in multi-release JAR files
 121 
 122 main.opt.constants=\
 123 \  -constants                       Show final constants
 124 
 125 main.opt.sysinfo=\
 126 \  -sysinfo                         Show system info (path, size, date, SHA-256 hash)\n\
 127 \                                   of class being processed
 128 
 129 main.opt.module=\
 130 \  --module <module>, -m <module>   Specify module containing classes to be disassembled
 131 
 132 main.usage.foot=\n\
 133 GNU-style options may use '=' instead of whitespace to separate the name of an option\n\
 134 from its value.\n\
 135 \n\
 136 Each class to be shown may be specified by a filename, a URL, or by its fully\n\
 137 qualified class name. Examples:\n\
 138 \   path/to/MyClass.class\n\
 139 \   jar:file:///path/to/MyJar.jar!/mypkg/MyClass.class\n\
 140 \   java.lang.Object\n