src/share/classes/com/sun/tools/apt/resources/apt.properties

Tue, 25 May 2010 15:54:51 -0700

author
ohair
date
Tue, 25 May 2010 15:54:51 -0700
changeset 554
9d9f26857129
parent 331
d043adadc8b6
permissions
-rw-r--r--

6943119: Rebrand source copyright notices
Reviewed-by: darcy

duke@1 1 #
ohair@554 2 # Copyright (c) 2004, 2006, Oracle and/or its affiliates. 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
ohair@554 7 # published by the Free Software Foundation. Oracle designates this
duke@1 8 # particular file as subject to the "Classpath" exception as provided
ohair@554 9 # by Oracle 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 #
ohair@554 21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ohair@554 22 # or visit www.oracle.com if you need additional information or have any
ohair@554 23 # questions.
duke@1 24 #
duke@1 25
duke@1 26 apt.msg.usage.header=\
duke@1 27 Usage: {0} <apt and javac options> <source files>\n\
duke@1 28 where apt options include:
duke@1 29
duke@1 30 apt.msg.usage.footer=\
duke@1 31 See javac -help for information on javac options.
duke@1 32
duke@1 33 apt.msg.usage.nonstandard.footer=\
duke@1 34 These options are non-standard and subject to change without notice, \nas is the format of their output.
duke@1 35
duke@1 36 apt.msg.bug=\
duke@1 37 An exception has occurred in apt ({0}). \
duke@1 38 Please file a bug at the Java Developer Connection (http://java.sun.com/webapps/bugreport) \
duke@1 39 after checking the Bug Parade for duplicates. \
duke@1 40 Include your program and the following diagnostic in your report. Thank you.
duke@1 41
duke@1 42 ## apt options
duke@1 43
duke@1 44 apt.opt.A=\
duke@1 45 Options to pass to annotation processors
duke@1 46 apt.opt.arg.class=\
duke@1 47 <class>
duke@1 48 apt.opt.arg.directory=\
duke@1 49 Specify where to place processor and javac generated class files
duke@1 50 apt.opt.classpath=\
duke@1 51 Specify where to find user class files and annotation processor factories
duke@1 52 apt.opt.d=\
duke@1 53 Specify where to place processor and javac generated class files
duke@1 54 apt.opt.factory=\
duke@1 55 Name of AnnotationProcessorFactory to use; bypasses default discovery process
duke@1 56 apt.opt.factorypath=\
duke@1 57 Specify where to find annotation processor factories
duke@1 58 apt.opt.s=\
duke@1 59 Specify where to place processor generated source files
duke@1 60 apt.opt.help=\
duke@1 61 Print a synopsis of standard options; use javac -help for more options
duke@1 62 apt.opt.print=\
duke@1 63 Print out textual representation of specified types
duke@1 64 apt.opt.nocompile=\
duke@1 65 Do not compile source files to class files
duke@1 66 apt.opt.proc.flag=\
duke@1 67 [key[=value]]
duke@1 68 apt.opt.version=\
duke@1 69 Version information
duke@1 70 apt.opt.XListAnnotationTypes=\
duke@1 71 List found annotation types
duke@1 72 apt.opt.XListDeclarations=\
duke@1 73 List specified and included declarations
duke@1 74 apt.opt.XPrintAptRounds=\
duke@1 75 Print information about initial and recursive apt rounds
duke@1 76 apt.opt.XPrintFactoryInfo=\
duke@1 77 Print information about which annotations a factory is asked to process
duke@1 78 apt.opt.XClassesAsDecls=\
duke@1 79 Treat both class and source files as declarations to process
duke@1 80
duke@1 81 ##
duke@1 82 ## errors
duke@1 83 ##
duke@1 84
duke@1 85 ## All errors which do not refer to a particular line in the source code are
duke@1 86 ## preceded by this string.
duke@1 87
duke@1 88 apt.err.error=\
duke@1 89 error:\u0020
duke@1 90
duke@1 91 apt.err.unsupported.source.version=\
duke@1 92 Source release {0} is not supported; use release 5 or earlier
duke@1 93
duke@1 94 apt.err.unsupported.target.version=\
duke@1 95 Target release {0} is not supported; use release 5 or earlier
duke@1 96
duke@1 97 apt.err.BadDeclaration=\
duke@1 98 Bad declaration created for annotation type {0}
duke@1 99
duke@1 100 apt.err.CantFindClass=\
duke@1 101 Could not find class file for {0}
duke@1 102
duke@1 103 apt.err.DeclarationCreation=\
duke@1 104 Could not create declaration for annotation type {0}
duke@1 105
duke@1 106 # Print an error from the Messager
duke@1 107 apt.err.Messager=\
duke@1 108 {0}
duke@1 109
duke@1 110 ##
duke@1 111 ## miscellaneous strings
duke@1 112 ##
duke@1 113
darcy@331 114 apt.misc.Deprecation=\
darcy@331 115 \nwarning:\u0020The apt tool and its associated API are planned to be\n\
darcy@331 116 removed in the next major JDK release. These features have been\n\
darcy@331 117 superseded by javac and the standardized annotation processing API,\n\
darcy@331 118 javax.annotation.processing and javax.lang.model. Users are\n\
darcy@331 119 recommended to migrate to the annotation processing features of\n\
darcy@331 120 javac; see the javac man page for more information.\n
darcy@331 121
duke@1 122 apt.misc.Problem=\
duke@1 123 Problem encountered during annotation processing; \nsee stacktrace below for more information.
duke@1 124
duke@1 125 apt.misc.SunMiscService=\
duke@1 126 Error finding annotation processor factories; \ncheck META-INF/services information.
duke@1 127
duke@1 128 # Print a notice from the Messager
duke@1 129 apt.note.Messager=\
duke@1 130 {0}
duke@1 131
duke@1 132 ##
duke@1 133 ## warnings
duke@1 134 ##
duke@1 135
duke@1 136 ## All warning messages are preceded by the following string.
duke@1 137 apt.warn.warning=\
duke@1 138 warning:\u0020
duke@1 139
duke@1 140 apt.warn.AnnotationsWithoutProcessors=\
duke@1 141 Annotation types without processors: {0}
duke@1 142
duke@1 143 apt.warn.BadFactory=\
duke@1 144 Bad annotation processor factory: {0}
duke@1 145
duke@1 146 apt.warn.BadParentDirectory=\
duke@1 147 Failed to create some parent directory of {0}
duke@1 148
duke@1 149 apt.warn.FactoryCantInstantiate=\
duke@1 150 Could not instantiate an instance of factory ''{0}''.
duke@1 151
duke@1 152 apt.warn.FactoryWrongType=\
duke@1 153 Specified factory, ''{0}'', is not an AnnotationProcessorFactory.
duke@1 154
duke@1 155 apt.warn.FactoryNotFound=\
duke@1 156 Specified AnnotationProcessorFactory, ''{0}'', not found on search path.
duke@1 157
duke@1 158 apt.warn.FileReopening=\
duke@1 159 Attempt to create ''{0}'' multiple times
duke@1 160
duke@1 161 apt.warn.IllegalFileName=\
duke@1 162 Cannot create file for illegal name ''{0}''.
duke@1 163
duke@1 164 apt.warn.MalformedSupportedString=\
duke@1 165 Malformed string for annotation support, ''{0}'', returned by factory.
duke@1 166
duke@1 167 apt.warn.NoNewFilesAfterRound=\
duke@1 168 Cannot create file ''{0}'' after a round has ended.
duke@1 169
duke@1 170 # Print a warning from the Messager
duke@1 171 apt.warn.Messager=\
duke@1 172 {0}
duke@1 173
duke@1 174 apt.warn.NoAnnotationProcessors=\
duke@1 175 No annotation processors found but annotations present.
duke@1 176
duke@1 177 apt.warn.NullProcessor=\
duke@1 178 Factory {0} returned null for an annotation processor.
duke@1 179
duke@1 180 apt.warn.CorrespondingClassFile=\
duke@1 181 A class file corresponding to source file ''{0}'' has already been created.
duke@1 182
duke@1 183 apt.warn.CorrespondingSourceFile=\
duke@1 184 A source file corresponding to class file ''{0}'' has already been created.

mercurial