src/share/classes/com/sun/tools/javah/resources/l10n.properties

Sat, 01 Dec 2007 00:00:00 +0000

author
duke
date
Sat, 01 Dec 2007 00:00:00 +0000
changeset 1
9a66ca7c79fa
child 416
c287d51c57da
permissions
-rw-r--r--

Initial load

duke@1 1 #
duke@1 2 # Copyright 1998-2003 Sun Microsystems, Inc. All Rights Reserved.
duke@1 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@1 4 #
duke@1 5 # This code is free software; you can redistribute it and/or modify it
duke@1 6 # under the terms of the GNU General Public License version 2 only, as
duke@1 7 # published by the Free Software Foundation. Sun designates this
duke@1 8 # particular file as subject to the "Classpath" exception as provided
duke@1 9 # by Sun in the LICENSE file that accompanied this code.
duke@1 10 #
duke@1 11 # This code is distributed in the hope that it will be useful, but WITHOUT
duke@1 12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@1 13 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@1 14 # version 2 for more details (a copy is included in the LICENSE file that
duke@1 15 # accompanied this code).
duke@1 16 #
duke@1 17 # You should have received a copy of the GNU General Public License version
duke@1 18 # 2 along with this work; if not, write to the Free Software Foundation,
duke@1 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@1 20 #
duke@1 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
duke@1 22 # CA 95054 USA or visit www.sun.com if you need additional information or
duke@1 23 # have any questions.
duke@1 24 #
duke@1 25
duke@1 26 #
duke@1 27 # User errors, command line errors.
duke@1 28 #
duke@1 29 cant.create.dir=\
duke@1 30 The directory {0} could not be create for output.
duke@1 31 at.args.cant.read=\
duke@1 32 Can''t read command line arguments from file {1}.
duke@1 33 at.args.io.exception=\
duke@1 34 The following I/O problem was encountered when processing an @ \
duke@1 35 argument on the command line: {0}.
duke@1 36 old.jni.mixed=\
duke@1 37 Can''t mix options -jni and -old. Try -help.
duke@1 38 old.llni.mixed=\
duke@1 39 Can''t mix options -old and -llni. Try -help.
duke@1 40 old.not.supported=\
duke@1 41 Option -old not supported by this version of javah.
duke@1 42 invalid.method.signature=\
duke@1 43 Invalid method signature: {0}
duke@1 44 jni.llni.mixed=\
duke@1 45 Can''t mix options -jni and -llni. Try -help.
duke@1 46 jni.no.stubs=\
duke@1 47 JNI does not require stubs, please refer to the JNI documentation.
duke@1 48 dir.file.mixed=\
duke@1 49 Can''t mix options -d and -o. Try -help.
duke@1 50 no.classes.specified=\
duke@1 51 No classes were specified on the command line. Try -help.
duke@1 52 no.outputfile.specified=\
duke@1 53 No outputfile was specified on the command line. Try -help.
duke@1 54 no.outputdir.specified=\
duke@1 55 No output directory was specified on the command line. Try -help.
duke@1 56 no.classpath.specified=\
duke@1 57 No classpath was specified on the command line. Try -help.
duke@1 58 no.bootclasspath.specified=\
duke@1 59 No bootclasspath was specified on the command line. Try -help.
duke@1 60 unknown.option=\
duke@1 61 {0} is an illegal argument\n
duke@1 62 tracing.not.supported=\
duke@1 63 Warning: Tracing is no longer supported. Instead, use\
duke@1 64 -verbose:jni option of the virtual machine.
duke@1 65
duke@1 66 #
duke@1 67 # Usage message.
duke@1 68 #
duke@1 69 usage=\
duke@1 70 Usage: javah [options] <classes>\n\
duke@1 71 \n\
duke@1 72 where [options] include:\n\
duke@1 73 \n\t\
duke@1 74 -help Print this help message and exit\n\t\
duke@1 75 -classpath <path> Path from which to load classes\n\t\
duke@1 76 -bootclasspath <path> Path from which to load bootstrap classes\n\t\
duke@1 77 -d <dir> Output directory\n\t\
duke@1 78 -o <file> Output file (only one of -d or -o may be used)\n\t\
duke@1 79 -jni Generate JNI-style header file (default)\n\t\
duke@1 80 -version Print version information\n\t\
duke@1 81 -verbose Enable verbose output\n\t\
duke@1 82 -force Always write output files\n\
duke@1 83 \n\
duke@1 84 <classes> are specified with their fully qualified names (for\n\
duke@1 85 instance, java.lang.Object).\n
duke@1 86
duke@1 87 #
duke@1 88 # Version string.
duke@1 89 #
duke@1 90 javah.version=javah version "{0}"
duke@1 91
duke@1 92 #
duke@1 93 # These should have better diagnostics.
duke@1 94 #
duke@1 95 super.class.not.found=\
duke@1 96 A required super class {0} could not be found.
duke@1 97 class.not.found=\
duke@1 98 Class {0} could not be found.
duke@1 99 io.exception=\
duke@1 100 Can''t recover from an I/O error with the following message: \
duke@1 101 {0}.
duke@1 102
duke@1 103 #
duke@1 104 # Problems in the guts of javah.
duke@1 105 #
duke@1 106 encoding.iso8859_1.not.found=\
duke@1 107 ISO8859_1 converter was not found for output. This is \
duke@1 108 probably due to an error in the installation installation.
duke@1 109 tried.to.define.non.static=\
duke@1 110 Tried to generate #define for non-static field.
duke@1 111 jni.unknown.type=\
duke@1 112 An unknown type encountered (JNI).
duke@1 113 unknown.array.type=\
duke@1 114 An unknown array type encountered when generating old style headers.
duke@1 115 unknown.type.for.field=\
duke@1 116 An unknown type encountered when generating old style headers.
duke@1 117 unknown.type.in.method.signature=\
duke@1 118 An unknown type eccountered when generating old style stubs.

mercurial