duke@1: # jjg@694: # Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved. duke@1: # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. duke@1: # duke@1: # This code is free software; you can redistribute it and/or modify it duke@1: # under the terms of the GNU General Public License version 2 only, as ohair@554: # published by the Free Software Foundation. Oracle designates this duke@1: # particular file as subject to the "Classpath" exception as provided ohair@554: # by Oracle in the LICENSE file that accompanied this code. duke@1: # duke@1: # This code is distributed in the hope that it will be useful, but WITHOUT duke@1: # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or duke@1: # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License duke@1: # version 2 for more details (a copy is included in the LICENSE file that duke@1: # accompanied this code). duke@1: # duke@1: # You should have received a copy of the GNU General Public License version duke@1: # 2 along with this work; if not, write to the Free Software Foundation, duke@1: # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. duke@1: # ohair@554: # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA ohair@554: # or visit www.oracle.com if you need additional information or have any ohair@554: # questions. jjg@416: # duke@1: duke@1: # duke@1: # User errors, command line errors. duke@1: # duke@1: cant.create.dir=\ jjg@416: The directory {0} could not be create for output. duke@1: at.args.cant.read=\ jjg@416: Can''t read command line arguments from file {1}. jjg@728: at.args.file.not.found=\ jjg@728: Can''t find file {0}. duke@1: at.args.io.exception=\ jjg@416: The following I/O problem was encountered when processing an @ \ duke@1: argument on the command line: {0}. duke@1: old.jni.mixed=\ jjg@416: Can''t mix options -jni and -old. Try -help. duke@1: old.llni.mixed=\ jjg@416: Can''t mix options -old and -llni. Try -help. duke@1: old.not.supported=\ jjg@416: Option -old not supported by this version of javah. duke@1: invalid.method.signature=\ jjg@416: Invalid method signature: {0} duke@1: jni.llni.mixed=\ jjg@416: Can''t mix options -jni and -llni. Try -help. duke@1: jni.no.stubs=\ jjg@416: JNI does not require stubs, please refer to the JNI documentation. jjg@712: jni.sigerror=\ jjg@712: Cannot determine signature for {0} duke@1: dir.file.mixed=\ jjg@416: Can''t mix options -d and -o. Try -help. duke@1: no.classes.specified=\ jjg@416: No classes were specified on the command line. Try -help. duke@1: no.outputfile.specified=\ jjg@416: No outputfile was specified on the command line. Try -help. duke@1: no.outputdir.specified=\ jjg@416: No output directory was specified on the command line. Try -help. duke@1: no.classpath.specified=\ jjg@416: No classpath was specified on the command line. Try -help. duke@1: no.bootclasspath.specified=\ jjg@416: No bootclasspath was specified on the command line. Try -help. duke@1: unknown.option=\ jjg@416: {0} is an illegal argument\n duke@1: tracing.not.supported=\ jjg@416: Warning: Tracing is no longer supported. Instead, use\ jjg@416: -verbose:jni option of the virtual machine. duke@1: duke@1: # duke@1: # Usage message. duke@1: # duke@1: usage=\ duke@1: Usage: javah [options] \n\ duke@1: \n\ duke@1: where [options] include:\n\ duke@1: \n\t\ duke@1: -help Print this help message and exit\n\t\ duke@1: -classpath Path from which to load classes\n\t\ duke@1: -bootclasspath Path from which to load bootstrap classes\n\t\ duke@1: -d Output directory\n\t\ duke@1: -o Output file (only one of -d or -o may be used)\n\t\ duke@1: -jni Generate JNI-style header file (default)\n\t\ duke@1: -version Print version information\n\t\ duke@1: -verbose Enable verbose output\n\t\ jjg@416: -force Always write output files\n\ duke@1: \n\ duke@1: are specified with their fully qualified names (for\n\ duke@1: instance, java.lang.Object).\n duke@1: jjg@416: main.usage=\ jjg@416: Usage: \n\ jjg@416: \ javah [options] \n\ jjg@416: where [options] include: jjg@416: main.opt.o=\ jjg@416: \ -o Output file (only one of -d or -o may be used) jjg@416: main.opt.d=\ jjg@416: \ -d Output directory jjg@416: main.opt.v=\ jjg@416: \ -v -verbose Enable verbose output jjg@709: main.opt.h=\ jjg@416: \ -h --help -? Print this message jjg@416: main.opt.version=\ jjg@416: \ -version Print version information jjg@416: main.opt.jni=\ jjg@416: \ -jni Generate JNI-style header file (default) jjg@416: main.opt.force=\ jjg@416: \ -force Always write output files jjg@416: main.opt.classpath=\ jjg@416: \ -classpath Path from which to load classes jjg@416: main.opt.bootclasspath=\ jjg@416: \ -bootclasspath Path from which to load bootstrap classes jjg@416: main.usage.foot=\ jjg@416: are specified with their fully qualified names\n\ jjg@416: (for example, java.lang.Object). jjg@416: duke@1: # duke@1: # Version string. duke@1: # jjg@694: javah.version={0} version "{1}" jjg@694: javah.fullVersion={0} full version "{1}" duke@1: duke@1: # duke@1: # These should have better diagnostics. duke@1: # duke@1: super.class.not.found=\ jjg@416: A required super class {0} could not be found. duke@1: class.not.found=\ jjg@416: Class {0} could not be found. duke@1: io.exception=\ jjg@416: Can''t recover from an I/O error with the following message: \ jjg@416: {0}. duke@1: duke@1: # duke@1: # Problems in the guts of javah. duke@1: # duke@1: encoding.iso8859_1.not.found=\ jjg@416: ISO8859_1 converter was not found for output. This is \ duke@1: probably due to an error in the installation installation. duke@1: tried.to.define.non.static=\ jjg@416: Tried to generate #define for non-static field. duke@1: jni.unknown.type=\ jjg@416: An unknown type encountered (JNI). duke@1: unknown.array.type=\ jjg@416: An unknown array type encountered when generating old style headers. duke@1: unknown.type.for.field=\ jjg@416: An unknown type encountered when generating old style headers. duke@1: unknown.type.in.method.signature=\ jjg@416: An unknown type eccountered when generating old style stubs. jjg@416: jjg@416: jjg@416: err.prefix=Error: jjg@416: err.cant.use.option.for.fm=Can't use {0} option with given file manager jjg@416: err.internal.error=Internal error: {0} jjg@416: err.ioerror=IO error: {0} jjg@416: err.missing.arg=value missing for {0} jjg@416: err.no.classes.specified=no classes specified jjg@416: err.unknown.option=unknown option: {0}