| duke@0 | #
|
| ohair@109 | # Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
|
| duke@0 | # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
| duke@0 | #
|
| duke@0 | # This code is free software; you can redistribute it and/or modify it
|
| duke@0 | # under the terms of the GNU General Public License version 2 only, as
|
| ohair@86 | # published by the Free Software Foundation. Oracle designates this
|
| duke@0 | # particular file as subject to the "Classpath" exception as provided
|
| ohair@86 | # by Oracle in the LICENSE file that accompanied this code.
|
| duke@0 | #
|
| duke@0 | # This code is distributed in the hope that it will be useful, but WITHOUT
|
| duke@0 | # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
| duke@0 | # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
| duke@0 | # version 2 for more details (a copy is included in the LICENSE file that
|
| duke@0 | # accompanied this code).
|
| duke@0 | #
|
| duke@0 | # You should have received a copy of the GNU General Public License version
|
| duke@0 | # 2 along with this work; if not, write to the Free Software Foundation,
|
| duke@0 | # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
| duke@0 | #
|
| ohair@86 | # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
| ohair@86 | # or visit www.oracle.com if you need additional information or have any
|
| ohair@86 | # questions.
|
| duke@0 | #
|
| duke@0 |
|
| duke@0 | ## standard options
|
| duke@0 |
|
| duke@0 | javac.opt.g=\
|
| duke@0 | Generate all debugging info
|
| duke@0 | javac.opt.g.none=\
|
| duke@0 | Generate no debugging info
|
| duke@0 | javac.opt.g.lines.vars.source=\
|
| duke@0 | Generate only some debugging info
|
| duke@0 | javac.opt.nowarn=\
|
| duke@0 | Generate no warnings
|
| duke@0 | javac.opt.verbose=\
|
| duke@0 | Output messages about what the compiler is doing
|
| duke@0 | javac.opt.deprecation=\
|
| duke@0 | Output source locations where deprecated APIs are used
|
| duke@0 | javac.opt.classpath=\
|
| duke@0 | Specify where to find user class files and annotation processors
|
| duke@0 | javac.opt.sourcepath=\
|
| duke@0 | Specify where to find input source files
|
| duke@0 | javac.opt.bootclasspath=\
|
| duke@0 | Override location of bootstrap class files
|
| duke@0 | javac.opt.Xbootclasspath.p=\
|
| duke@0 | Prepend to the bootstrap class path
|
| duke@0 | javac.opt.Xbootclasspath.a=\
|
| duke@0 | Append to the bootstrap class path
|
| duke@0 | javac.opt.endorseddirs=\
|
| duke@0 | Override location of endorsed standards path
|
| duke@0 | javac.opt.extdirs=\
|
| duke@0 | Override location of installed extensions
|
| duke@0 | javac.opt.processorpath=\
|
| duke@0 | Specify where to find annotation processors
|
| duke@0 | javac.opt.processor=\
|
| duke@0 | Names of the annotation processors to run; bypasses default discovery process
|
| duke@0 | javac.opt.proc.none.only=\
|
| duke@0 | Control whether annotation processing and/or compilation is done.
|
| duke@0 | javac.opt.d=\
|
| duke@0 | Specify where to place generated class files
|
| duke@0 | javac.opt.sourceDest=\
|
| duke@0 | Specify where to place generated source files
|
| duke@0 | javac.opt.J=\
|
| duke@0 | Pass <flag> directly to the runtime system
|
| duke@0 | javac.opt.encoding=\
|
| duke@0 | Specify character encoding used by source files
|
| duke@0 | javac.opt.target=\
|
| duke@0 | Generate class files for specific VM version
|
| duke@0 | javac.opt.source=\
|
| duke@0 | Provide source compatibility with specified release
|
| jjg@103 | javac.opt.Werror=\
|
| jjg@103 | Terminate compilation if warnings occur
|
| duke@0 | javac.opt.A=\
|
| duke@0 | Options to pass to annotation processors
|
| duke@0 | javac.opt.implicit=\
|
| duke@0 | Specify whether or not to generate class files for implicitly referenced files
|
| duke@0 | javac.opt.arg.class=\
|
| duke@0 | <class>
|
| duke@0 | javac.opt.arg.class.list=\
|
| duke@0 | <class1>[,<class2>,<class3>...]
|
| duke@0 | javac.opt.arg.flag=\
|
| duke@0 | <flag>
|
| duke@0 | javac.opt.arg.key.equals.value=\
|
| duke@0 | key[=value]
|
| duke@0 | javac.opt.arg.path=\
|
| duke@0 | <path>
|
| duke@0 | javac.opt.arg.dirs=\
|
| duke@0 | <dirs>
|
| duke@0 | javac.opt.arg.directory=\
|
| duke@0 | <directory>
|
| duke@0 | javac.opt.arg.encoding=\
|
| duke@0 | <encoding>
|
| duke@0 | javac.opt.arg.release=\
|
| duke@0 | <release>
|
| duke@0 | javac.opt.arg.number=\
|
| duke@0 | <number>
|
| duke@0 |
|
| duke@0 | ## extended options
|
| duke@0 |
|
| duke@0 | javac.opt.maxerrs=\
|
| duke@0 | Set the maximum number of errors to print
|
| duke@0 | javac.opt.maxwarns=\
|
| duke@0 | Set the maximum number of warnings to print
|
| duke@0 | javac.opt.nogj=\
|
| duke@0 | Don't accept generics in the language
|
| duke@0 | javac.opt.moreinfo=\
|
| duke@0 | Print extended information for type variables
|
| duke@0 | javac.opt.printflat=\
|
| duke@0 | Print abstract syntax tree after inner class conversion
|
| duke@0 | javac.opt.printsearch=\
|
| duke@0 | Print information where classfiles are searched
|
| duke@0 | javac.opt.prompt=\
|
| duke@0 | Stop after each error
|
| duke@0 | javac.opt.retrofit=\
|
| duke@0 | Retrofit existing classfiles with generic types
|
| duke@0 | javac.opt.s=\
|
| duke@0 | Emit java sources instead of classfiles
|
| duke@0 | javac.opt.scramble=\
|
| duke@0 | Scramble private identifiers in bytecode
|
| duke@0 | javac.opt.scrambleall=\
|
| duke@0 | Scramble package visible identifiers in bytecode
|
| duke@0 | javac.opt.version=\
|
| duke@0 | Version information
|
| duke@0 | javac.opt.arg.pathname=\
|
| duke@0 | <pathname>
|
| duke@0 | javac.opt.arg.file=\
|
| duke@0 | <filename>
|
| duke@0 | javac.opt.Xlint=\
|
| duke@0 | Enable recommended warnings
|
| duke@0 | javac.opt.Xlint.suboptlist=\
|
| duke@0 | Enable or disable specific warnings
|
| duke@0 | javac.opt.Xstdout=\
|
| duke@0 | Redirect standard output
|
| duke@0 | javac.opt.X=\
|
| duke@0 | Print a synopsis of nonstandard options
|
| duke@0 | javac.opt.help=\
|
| duke@0 | Print a synopsis of standard options
|
| duke@0 | javac.opt.print=\
|
| duke@0 | Print out a textual representation of specified types
|
| duke@0 | javac.opt.printRounds=\
|
| duke@0 | Print information about rounds of annotation processing
|
| duke@0 | javac.opt.printProcessorInfo=\
|
| duke@0 | Print information about which annotations a processor is asked to process
|
| duke@0 | javac.opt.prefer=\
|
| duke@0 | Specify which file to read when both a source file and class file are found for an implicitly compiled class
|
| duke@0 |
|
| duke@0 | ## errors
|
| duke@0 |
|
| duke@0 | javac.err.empty.A.argument=\
|
| duke@0 | -A requires an argument; use ''-Akey'' or ''-Akey=value''
|
| duke@0 | javac.err.invalid.arg=\
|
| duke@0 | invalid argument: {0}
|
| duke@0 | javac.err.invalid.A.key=\
|
| duke@0 | key in annotation processor option ''{0}'' is not a dot-separated sequence of identifiers
|
| duke@0 | javac.err.invalid.flag=\
|
| duke@0 | invalid flag: {0}
|
| duke@0 | javac.err.invalid.target=\
|
| duke@0 | invalid target release: {0}
|
| duke@0 | javac.err.no.source.files=\
|
| duke@0 | no source files
|
| duke@0 | javac.err.req.arg=\
|
| duke@0 | {0} requires an argument
|
| duke@0 | javac.err.invalid.source=\
|
| duke@0 | invalid source release: {0}
|
| duke@0 | javac.err.error.writing.file=\
|
| duke@0 | error writing {0}; {1}
|
| duke@0 | javac.warn.source.target.conflict=\
|
| duke@0 | source release {0} requires target release {1}
|
| duke@0 | javac.warn.target.default.source.conflict=\
|
| duke@0 | target release {0} conflicts with default source release {1}
|
| duke@0 | javac.err.dir.not.found=\
|
| duke@0 | directory not found: {0}
|
| duke@0 | javac.err.file.not.found=\
|
| duke@0 | file not found: {0}
|
| duke@0 | javac.err.file.not.directory=\
|
| duke@0 | not a directory: {0}
|
| duke@0 | javac.err.file.not.file=\
|
| duke@0 | not a file: {0}
|
| duke@0 | ## messages
|
| duke@0 |
|
| duke@0 | javac.msg.usage.header=\
|
| duke@0 | Usage: {0} <options> <source files>\n\
|
| duke@0 | where possible options include:
|
| duke@0 |
|
| duke@0 | javac.msg.usage=\
|
| duke@0 | Usage: {0} <options> <source files>\n\
|
| duke@0 | use -help for a list of possible options
|
| duke@0 |
|
| duke@0 | javac.msg.usage.nonstandard.footer=\
|
| duke@0 | These options are non-standard and subject to change without notice.
|
| duke@0 |
|
| duke@0 | javac.msg.bug=\
|
| duke@0 | An exception has occurred in the compiler ({0}). \
|
| duke@0 | Please file a bug at the Java Developer Connection (http://java.sun.com/webapps/bugreport) \
|
| duke@0 | after checking the Bug Parade for duplicates. \
|
| duke@0 | Include your program and the following diagnostic in your report. Thank you.
|
| duke@0 |
|
| duke@0 | javac.msg.io=\
|
| duke@0 | \n\nAn input/output error occurred.\n\
|
| duke@0 | Consult the following stack trace for details.\n
|
| duke@0 |
|
| duke@0 | javac.msg.proc.annotation.uncaught.exception=\
|
| duke@0 | \n\nAn annotation processor threw an uncaught exception.\n\
|
| duke@0 | Consult the following stack trace for details.\n
|
| duke@0 |
|
| duke@0 | javac.msg.resource=\
|
| duke@0 | \n\nThe system is out of resources.\n\
|
| duke@0 | Consult the following stack trace for details.\n
|
| duke@0 |
|
| duke@0 | javac.version={0} {1}
|
| duke@0 | javac.fullVersion={0} full version "{1}"
|