src/share/classes/com/sun/tools/javac/resources/javac.properties
author ohair
Tue Dec 28 11:17:31 2010 -0800 (2 years ago)
changeset 109 633c329e6d87
parent 103c28b5920263c
permissions -rw-r--r--
6962318: Update copyright year
Reviewed-by: andrew
        1 #
        2 # Copyright (c) 1999, 2010, 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 ## standard options
       27 
       28 javac.opt.g=\
       29     Generate all debugging info
       30 javac.opt.g.none=\
       31     Generate no debugging info
       32 javac.opt.g.lines.vars.source=\
       33     Generate only some debugging info
       34 javac.opt.nowarn=\
       35     Generate no warnings
       36 javac.opt.verbose=\
       37     Output messages about what the compiler is doing
       38 javac.opt.deprecation=\
       39     Output source locations where deprecated APIs are used
       40 javac.opt.classpath=\
       41     Specify where to find user class files and annotation processors
       42 javac.opt.sourcepath=\
       43     Specify where to find input source files
       44 javac.opt.bootclasspath=\
       45     Override location of bootstrap class files
       46 javac.opt.Xbootclasspath.p=\
       47     Prepend to the bootstrap class path
       48 javac.opt.Xbootclasspath.a=\
       49     Append to the bootstrap class path
       50 javac.opt.endorseddirs=\
       51     Override location of endorsed standards path
       52 javac.opt.extdirs=\
       53     Override location of installed extensions
       54 javac.opt.processorpath=\
       55     Specify where to find annotation processors
       56 javac.opt.processor=\
       57     Names of the annotation processors to run; bypasses default discovery process
       58 javac.opt.proc.none.only=\
       59     Control whether annotation processing and/or compilation is done.
       60 javac.opt.d=\
       61     Specify where to place generated class files
       62 javac.opt.sourceDest=\
       63     Specify where to place generated source files
       64 javac.opt.J=\
       65     Pass <flag> directly to the runtime system
       66 javac.opt.encoding=\
       67     Specify character encoding used by source files
       68 javac.opt.target=\
       69     Generate class files for specific VM version
       70 javac.opt.source=\
       71     Provide source compatibility with specified release
       72 javac.opt.Werror=\
       73     Terminate compilation if warnings occur
       74 javac.opt.A=\
       75     Options to pass to annotation processors
       76 javac.opt.implicit=\
       77     Specify whether or not to generate class files for implicitly referenced files 
       78 javac.opt.arg.class=\
       79     <class>
       80 javac.opt.arg.class.list=\
       81     <class1>[,<class2>,<class3>...]
       82 javac.opt.arg.flag=\
       83     <flag>
       84 javac.opt.arg.key.equals.value=\
       85     key[=value]
       86 javac.opt.arg.path=\
       87     <path>
       88 javac.opt.arg.dirs=\
       89     <dirs>
       90 javac.opt.arg.directory=\
       91     <directory>
       92 javac.opt.arg.encoding=\
       93     <encoding>
       94 javac.opt.arg.release=\
       95     <release>
       96 javac.opt.arg.number=\
       97     <number>
       98 
       99 ## extended options
      100 
      101 javac.opt.maxerrs=\
      102     Set the maximum number of errors to print
      103 javac.opt.maxwarns=\
      104     Set the maximum number of warnings to print
      105 javac.opt.nogj=\
      106     Don't accept generics in the language
      107 javac.opt.moreinfo=\
      108     Print extended information for type variables
      109 javac.opt.printflat=\
      110     Print abstract syntax tree after inner class conversion
      111 javac.opt.printsearch=\
      112     Print information where classfiles are searched
      113 javac.opt.prompt=\
      114     Stop after each error
      115 javac.opt.retrofit=\
      116     Retrofit existing classfiles with generic types
      117 javac.opt.s=\
      118     Emit java sources instead of classfiles
      119 javac.opt.scramble=\
      120     Scramble private identifiers in bytecode
      121 javac.opt.scrambleall=\
      122     Scramble package visible identifiers in bytecode
      123 javac.opt.version=\
      124     Version information
      125 javac.opt.arg.pathname=\
      126     <pathname>
      127 javac.opt.arg.file=\
      128     <filename>
      129 javac.opt.Xlint=\
      130     Enable recommended warnings
      131 javac.opt.Xlint.suboptlist=\
      132     Enable or disable specific warnings
      133 javac.opt.Xstdout=\
      134     Redirect standard output
      135 javac.opt.X=\
      136     Print a synopsis of nonstandard options
      137 javac.opt.help=\
      138     Print a synopsis of standard options
      139 javac.opt.print=\
      140     Print out a textual representation of specified types
      141 javac.opt.printRounds=\
      142     Print information about rounds of annotation processing
      143 javac.opt.printProcessorInfo=\
      144     Print information about which annotations a processor is asked to process
      145 javac.opt.prefer=\
      146     Specify which file to read when both a source file and class file are found for an implicitly compiled class
      147 
      148 ## errors
      149 
      150 javac.err.empty.A.argument=\
      151     -A requires an argument; use ''-Akey'' or ''-Akey=value''
      152 javac.err.invalid.arg=\
      153     invalid argument: {0}
      154 javac.err.invalid.A.key=\
      155      key in annotation processor option ''{0}'' is not a dot-separated sequence of identifiers
      156 javac.err.invalid.flag=\
      157     invalid flag: {0}
      158 javac.err.invalid.target=\
      159     invalid target release: {0}
      160 javac.err.no.source.files=\
      161     no source files
      162 javac.err.req.arg=\
      163     {0} requires an argument
      164 javac.err.invalid.source=\
      165     invalid source release: {0}
      166 javac.err.error.writing.file=\
      167     error writing {0}; {1}
      168 javac.warn.source.target.conflict=\
      169     source release {0} requires target release {1}
      170 javac.warn.target.default.source.conflict=\
      171     target release {0} conflicts with default source release {1}
      172 javac.err.dir.not.found=\
      173     directory not found: {0}
      174 javac.err.file.not.found=\
      175     file not found: {0}
      176 javac.err.file.not.directory=\
      177     not a directory: {0}
      178 javac.err.file.not.file=\
      179     not a file: {0}
      180 ## messages
      181 
      182 javac.msg.usage.header=\
      183 Usage: {0} <options> <source files>\n\
      184 where possible options include:
      185 
      186 javac.msg.usage=\
      187     Usage: {0} <options> <source files>\n\
      188     use -help for a list of possible options
      189 
      190 javac.msg.usage.nonstandard.footer=\
      191 These options are non-standard and subject to change without notice.
      192 	
      193 javac.msg.bug=\
      194 An exception has occurred in the compiler ({0}). \
      195 Please file a bug at the Java Developer Connection (http://java.sun.com/webapps/bugreport)  \
      196 after checking the Bug Parade for duplicates. \
      197 Include your program and the following diagnostic in your report.  Thank you.
      198 
      199 javac.msg.io=\
      200 \n\nAn input/output error occurred.\n\
      201 Consult the following stack trace for details.\n
      202 
      203 javac.msg.proc.annotation.uncaught.exception=\
      204 \n\nAn annotation processor threw an uncaught exception.\n\
      205 Consult the following stack trace for details.\n
      206 
      207 javac.msg.resource=\
      208 \n\nThe system is out of resources.\n\
      209 Consult the following stack trace for details.\n
      210 
      211 javac.version={0} {1}
      212 javac.fullVersion={0} full version "{1}"