duke@1: # ohair@554: # Copyright (c) 2004, 2006, Oracle and/or its affiliates. All rights reserved. duke@1: # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. duke@1: # duke@1: # This code is free software; you can redistribute it and/or modify it duke@1: # under the terms of the GNU General Public License version 2 only, as ohair@554: # published by the Free Software Foundation. Oracle designates this duke@1: # particular file as subject to the "Classpath" exception as provided ohair@554: # by Oracle in the LICENSE file that accompanied this code. duke@1: # duke@1: # This code is distributed in the hope that it will be useful, but WITHOUT duke@1: # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or duke@1: # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License duke@1: # version 2 for more details (a copy is included in the LICENSE file that duke@1: # accompanied this code). duke@1: # duke@1: # You should have received a copy of the GNU General Public License version duke@1: # 2 along with this work; if not, write to the Free Software Foundation, duke@1: # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. duke@1: # ohair@554: # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA ohair@554: # or visit www.oracle.com if you need additional information or have any ohair@554: # questions. duke@1: # duke@1: duke@1: apt.msg.usage.header=\ duke@1: Usage: {0} \n\ duke@1: where apt options include: duke@1: duke@1: apt.msg.usage.footer=\ duke@1: See javac -help for information on javac options. duke@1: duke@1: apt.msg.usage.nonstandard.footer=\ duke@1: These options are non-standard and subject to change without notice, \nas is the format of their output. duke@1: duke@1: apt.msg.bug=\ duke@1: An exception has occurred in apt ({0}). \ duke@1: Please file a bug at the Java Developer Connection (http://java.sun.com/webapps/bugreport) \ duke@1: after checking the Bug Parade for duplicates. \ duke@1: Include your program and the following diagnostic in your report. Thank you. duke@1: duke@1: ## apt options duke@1: duke@1: apt.opt.A=\ duke@1: Options to pass to annotation processors duke@1: apt.opt.arg.class=\ duke@1: duke@1: apt.opt.arg.directory=\ duke@1: Specify where to place processor and javac generated class files duke@1: apt.opt.classpath=\ duke@1: Specify where to find user class files and annotation processor factories duke@1: apt.opt.d=\ duke@1: Specify where to place processor and javac generated class files duke@1: apt.opt.factory=\ duke@1: Name of AnnotationProcessorFactory to use; bypasses default discovery process duke@1: apt.opt.factorypath=\ duke@1: Specify where to find annotation processor factories duke@1: apt.opt.s=\ duke@1: Specify where to place processor generated source files duke@1: apt.opt.help=\ duke@1: Print a synopsis of standard options; use javac -help for more options duke@1: apt.opt.print=\ duke@1: Print out textual representation of specified types duke@1: apt.opt.nocompile=\ duke@1: Do not compile source files to class files duke@1: apt.opt.proc.flag=\ duke@1: [key[=value]] duke@1: apt.opt.version=\ duke@1: Version information duke@1: apt.opt.XListAnnotationTypes=\ duke@1: List found annotation types duke@1: apt.opt.XListDeclarations=\ duke@1: List specified and included declarations duke@1: apt.opt.XPrintAptRounds=\ duke@1: Print information about initial and recursive apt rounds duke@1: apt.opt.XPrintFactoryInfo=\ duke@1: Print information about which annotations a factory is asked to process duke@1: apt.opt.XClassesAsDecls=\ duke@1: Treat both class and source files as declarations to process duke@1: duke@1: ## duke@1: ## errors duke@1: ## duke@1: duke@1: ## All errors which do not refer to a particular line in the source code are duke@1: ## preceded by this string. duke@1: duke@1: apt.err.error=\ duke@1: error:\u0020 duke@1: duke@1: apt.err.unsupported.source.version=\ duke@1: Source release {0} is not supported; use release 5 or earlier duke@1: duke@1: apt.err.unsupported.target.version=\ duke@1: Target release {0} is not supported; use release 5 or earlier duke@1: duke@1: apt.err.BadDeclaration=\ duke@1: Bad declaration created for annotation type {0} duke@1: duke@1: apt.err.CantFindClass=\ duke@1: Could not find class file for {0} duke@1: duke@1: apt.err.DeclarationCreation=\ duke@1: Could not create declaration for annotation type {0} duke@1: duke@1: # Print an error from the Messager duke@1: apt.err.Messager=\ duke@1: {0} duke@1: duke@1: ## duke@1: ## miscellaneous strings duke@1: ## duke@1: darcy@331: apt.misc.Deprecation=\ darcy@331: \nwarning:\u0020The apt tool and its associated API are planned to be\n\ darcy@331: removed in the next major JDK release. These features have been\n\ darcy@331: superseded by javac and the standardized annotation processing API,\n\ darcy@331: javax.annotation.processing and javax.lang.model. Users are\n\ darcy@331: recommended to migrate to the annotation processing features of\n\ darcy@331: javac; see the javac man page for more information.\n darcy@331: duke@1: apt.misc.Problem=\ duke@1: Problem encountered during annotation processing; \nsee stacktrace below for more information. duke@1: duke@1: apt.misc.SunMiscService=\ duke@1: Error finding annotation processor factories; \ncheck META-INF/services information. duke@1: duke@1: # Print a notice from the Messager duke@1: apt.note.Messager=\ duke@1: {0} duke@1: duke@1: ## duke@1: ## warnings duke@1: ## duke@1: duke@1: ## All warning messages are preceded by the following string. duke@1: apt.warn.warning=\ duke@1: warning:\u0020 duke@1: duke@1: apt.warn.AnnotationsWithoutProcessors=\ duke@1: Annotation types without processors: {0} duke@1: duke@1: apt.warn.BadFactory=\ duke@1: Bad annotation processor factory: {0} duke@1: duke@1: apt.warn.BadParentDirectory=\ duke@1: Failed to create some parent directory of {0} duke@1: duke@1: apt.warn.FactoryCantInstantiate=\ duke@1: Could not instantiate an instance of factory ''{0}''. duke@1: duke@1: apt.warn.FactoryWrongType=\ duke@1: Specified factory, ''{0}'', is not an AnnotationProcessorFactory. duke@1: duke@1: apt.warn.FactoryNotFound=\ duke@1: Specified AnnotationProcessorFactory, ''{0}'', not found on search path. duke@1: duke@1: apt.warn.FileReopening=\ duke@1: Attempt to create ''{0}'' multiple times duke@1: duke@1: apt.warn.IllegalFileName=\ duke@1: Cannot create file for illegal name ''{0}''. duke@1: duke@1: apt.warn.MalformedSupportedString=\ duke@1: Malformed string for annotation support, ''{0}'', returned by factory. duke@1: duke@1: apt.warn.NoNewFilesAfterRound=\ duke@1: Cannot create file ''{0}'' after a round has ended. duke@1: duke@1: # Print a warning from the Messager duke@1: apt.warn.Messager=\ duke@1: {0} duke@1: duke@1: apt.warn.NoAnnotationProcessors=\ duke@1: No annotation processors found but annotations present. duke@1: duke@1: apt.warn.NullProcessor=\ duke@1: Factory {0} returned null for an annotation processor. duke@1: duke@1: apt.warn.CorrespondingClassFile=\ duke@1: A class file corresponding to source file ''{0}'' has already been created. duke@1: duke@1: apt.warn.CorrespondingSourceFile=\ duke@1: A source file corresponding to class file ''{0}'' has already been created.