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

Thu, 24 Jul 2008 19:06:57 +0100

author
mcimadamore
date
Thu, 24 Jul 2008 19:06:57 +0100
changeset 80
5c9cdeb740f2
parent 1
9a66ca7c79fa
child 416
c287d51c57da
permissions
-rw-r--r--

6717241: some diagnostic argument is prematurely converted into a String object
Summary: removed early toString() conversions applied to diagnostic arguments
Reviewed-by: jjg

     1 #
     2 # Copyright 1998-2003 Sun Microsystems, Inc.  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.  Sun designates this
     8 # particular file as subject to the "Classpath" exception as provided
     9 # by Sun 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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
    22 # CA 95054 USA or visit www.sun.com if you need additional information or
    23 # have any questions.
    24 # 
    26 #
    27 # User errors, command line errors.
    28 #
    29 cant.create.dir=\
    30 	The directory {0} could not be create for output.
    31 at.args.cant.read=\
    32 	Can''t read command line arguments from file {1}.
    33 at.args.io.exception=\
    34 	The following I/O problem was encountered when processing an @ \
    35         argument on the command line: {0}.
    36 old.jni.mixed=\
    37 	Can''t mix options -jni and -old.  Try -help.
    38 old.llni.mixed=\
    39 	Can''t mix options -old and -llni.  Try -help.
    40 old.not.supported=\
    41 	Option -old not supported by this version of javah.
    42 invalid.method.signature=\
    43 	Invalid method signature: {0}
    44 jni.llni.mixed=\
    45 	Can''t mix options -jni and -llni.  Try -help.
    46 jni.no.stubs=\
    47 	JNI does not require stubs, please refer to the JNI documentation.
    48 dir.file.mixed=\
    49 	Can''t mix options -d and -o.  Try -help.
    50 no.classes.specified=\
    51 	No classes were specified on the command line.  Try -help.
    52 no.outputfile.specified=\
    53 	No outputfile was specified on the command line.  Try -help.
    54 no.outputdir.specified=\
    55 	No output directory was specified on the command line.  Try -help.
    56 no.classpath.specified=\
    57 	No classpath was specified on the command line.  Try -help.
    58 no.bootclasspath.specified=\
    59 	No bootclasspath was specified on the command line.  Try -help.
    60 unknown.option=\
    61 	{0} is an illegal argument\n
    62 tracing.not.supported=\
    63 	Warning: Tracing is no longer supported.  Instead, use\
    64 	-verbose:jni option of the virtual machine.
    66 #
    67 # Usage message.
    68 #
    69 usage=\
    70 Usage: javah [options] <classes>\n\
    71 \n\
    72 where [options] include:\n\
    73 \n\t\
    74 -help                 Print this help message and exit\n\t\
    75 -classpath <path>     Path from which to load classes\n\t\
    76 -bootclasspath <path> Path from which to load bootstrap classes\n\t\
    77 -d <dir>              Output directory\n\t\
    78 -o <file>             Output file (only one of -d or -o may be used)\n\t\
    79 -jni                  Generate JNI-style header file (default)\n\t\
    80 -version              Print version information\n\t\
    81 -verbose              Enable verbose output\n\t\
    82 -force		      Always write output files\n\
    83 \n\
    84 <classes> are specified with their fully qualified names (for\n\
    85 instance, java.lang.Object).\n
    87 #
    88 # Version string.
    89 #
    90 javah.version=javah version "{0}"
    92 #
    93 # These should have better diagnostics.
    94 #
    95 super.class.not.found=\
    96 	A required super class {0} could not be found.
    97 class.not.found=\
    98 	Class {0} could not be found.
    99 io.exception=\
   100 	Can''t recover from an I/O error with the following message: \
   101 	{0}.
   103 #
   104 # Problems in the guts of javah.
   105 #
   106 encoding.iso8859_1.not.found=\
   107 	ISO8859_1 converter was not found for output.  This is \
   108         probably due to an error in the installation installation.
   109 tried.to.define.non.static=\
   110 	Tried to generate #define for non-static field.
   111 jni.unknown.type=\
   112 	An unknown type encountered (JNI).
   113 unknown.array.type=\
   114 	An unknown array type encountered when generating old style headers.
   115 unknown.type.for.field=\
   116 	An unknown type encountered when generating old style headers.
   117 unknown.type.in.method.signature=\
   118 	An unknown type eccountered when generating old style stubs.

mercurial