ohair@286: # ohair@286: # Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved. ohair@286: # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. ohair@286: # ohair@286: # This code is free software; you can redistribute it and/or modify it ohair@286: # under the terms of the GNU General Public License version 2 only, as ohair@286: # published by the Free Software Foundation. Oracle designates this ohair@286: # particular file as subject to the "Classpath" exception as provided ohair@286: # by Oracle in the LICENSE file that accompanied this code. ohair@286: # ohair@286: # This code is distributed in the hope that it will be useful, but WITHOUT ohair@286: # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or ohair@286: # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ohair@286: # version 2 for more details (a copy is included in the LICENSE file that ohair@286: # accompanied this code). ohair@286: # ohair@286: # You should have received a copy of the GNU General Public License version ohair@286: # 2 along with this work; if not, write to the Free Software Foundation, ohair@286: # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. ohair@286: # ohair@286: # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA ohair@286: # or visit www.oracle.com if you need additional information or have any ohair@286: # questions. ohair@286: # ohair@286: ohair@286: # Concatenated with Driver.ErrorMessage, Driver.WarningMessage, Driver.InfoMessage (Driver.InfoMessage + exception message + ConsoleErrorReporter.UnknownLocation) if location of the error is not known. ohair@286: ConsoleErrorReporter.UnknownLocation = \ ohair@286: unknown location ohair@286: ohair@286: # Concatenated with Driver.ErrorMessage, Driver.WarningMessage, Driver.InfoMessage (Driver.InfoMessage + exception message + ConsoleErrorReporter.LineXOfY). {0} - "?"/number, {1} - file location/"unknown file" e.g.: [xjc] [ERROR] Attempt to create a property having the same name as the reserved word "Class". [xjc] line 6 of example.xsd ohair@286: ConsoleErrorReporter.LineXOfY = \ ohair@286: \ \ line {0} of {1} ohair@286: ohair@286: # may be a placeholder replacement for the second placeholder of ConsoleErrorReporter.LineXOfY (if the file location is unknown) ohair@286: ConsoleErrorReporter.UnknownFile = \ ohair@286: unknown file ohair@286: ohair@286: Driver.Private.Usage = \ ohair@286: Additional private testing options:\n\ ohair@286: \ \ -debug : run in debug mode (includes -verbose)\n\ ohair@286: \ \ -mode : run XJC in other running mode\n\ ohair@286: \ \ -private : display this help message\n\ ohair@286: Mode:\n\ ohair@286: \ \ code : generate Java source code (default)\n\ ohair@286: \ \ dryrun : compile the schema in memory, but don't generate the Java source\n\ ohair@286: \ \ zip : generate Java source code into a zip file specified by the -d option\n\ ohair@286: \ \ sig : dump the signatures of the generated code\n\ ohair@286: \ \ forest : dump transformed DOM forest\n\ ohair@286: ohair@286: Driver.Public.Usage = \ ohair@286: Usage: xjc [-options ...] ... [-b ] ...\n\ ohair@286: If dir is specified, all schema files in it will be compiled.\n\ ohair@286: If jar is specified, /META-INF/sun-jaxb.episode binding file will be compiled.\n\ ohair@286: Options:\n\ ohair@286: \ \ -nv : do not perform strict validation of the input schema(s)\n\ ohair@286: \ \ -extension : allow vendor extensions - do not strictly follow the\n\ ohair@286: \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Compatibility Rules and App E.2 from the JAXB Spec\n\ ohair@286: \ \ -b : specify external bindings files (each must have its own -b)\n\ ohair@286: \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ If a directory is given, **/*.xjb is searched\n\ ohair@286: \ \ -d : generated files will go into this directory\n\ ohair@286: \ \ -p : specifies the target package\n\ ohair@286: \ \ -httpproxy : set HTTP/HTTPS proxy. Format is [user[:password]@]proxyHost:proxyPort\n\ ohair@286: \ \ -httpproxyfile : Works like -httpproxy but takes the argument in a file to protect password \n\ ohair@286: \ \ -classpath : specify where to find user class files\n\ ohair@286: \ \ -catalog : specify catalog files to resolve external entity references\n\ ohair@286: \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ support TR9401, XCatalog, and OASIS XML Catalog format.\n\ ohair@286: \ \ -readOnly : generated files will be in read-only mode\n\ ohair@286: \ \ -npa : suppress generation of package level annotations (**/package-info.java)\n\ ohair@286: \ \ -no-header : suppress generation of a file header with timestamp\n\ ohair@286: \ \ -target (2.0|2.1) : behave like XJC 2.0 or 2.1 and generate code that doesn't use any 2.2 features.\n\ ohair@286: \ \ -encoding : specify character encoding for generated source files\n\ ohair@286: \ \ -enableIntrospection : enable correct generation of Boolean getters/setters to enable Bean Introspection apis \n\ ohair@286: \ \ -contentForWildcard : generates content property for types with multiple xs:any derived elements \n\ ohair@286: \ \ -xmlschema : treat input as W3C XML Schema (default)\n\ ohair@286: \ \ -relaxng : treat input as RELAX NG (experimental,unsupported)\n\ ohair@286: \ \ -relaxng-compact : treat input as RELAX NG compact syntax (experimental,unsupported)\n\ ohair@286: \ \ -dtd : treat input as XML DTD (experimental,unsupported)\n\ ohair@286: \ \ -wsdl : treat input as WSDL and compile schemas inside it (experimental,unsupported)\n\ ohair@286: \ \ -verbose : be extra verbose\n\ ohair@286: \ \ -quiet : suppress compiler output\n\ ohair@286: \ \ -help : display this help message\n\ ohair@286: \ \ -version : display version information\n\ ohair@286: \ \ -fullversion : display full version information\n\ ohair@286: ohair@286: Driver.AddonUsage = \nExtensions: ohair@286: ohair@286: # {0} - one of: DTD, RELAX NG, RELAX NG compact syntax, WSDL; {1} - one of (respectively): -dtd, -relaxng, -relaxng-compact, -wsdl ohair@286: Driver.ExperimentalLanguageWarning = \ ohair@286: Are you trying to compile {0}? Support for {0} is experimental. \ ohair@286: You may enable it by using the {1} option. ohair@286: ohair@286: # Not concatenated with any other String. Variable: Name of a directory (input argument of the XJC utility). ohair@286: Driver.NonExistentDir = \ ohair@286: cowardly refuses to write to a non-existent directory "{0}" ohair@286: ohair@286: # Usage not found. TODO Remove ohair@286: #Driver.MissingRuntimePackageName = \ ohair@286: # the -use-runtime option is missing a package name ohair@286: ohair@286: # Not concatenated with any other string (written on a separate line). ohair@286: Driver.MissingModeOperand = \ ohair@286: the -mode option is missing an operand ohair@286: ohair@286: # Usage not found. TODO Remove ohair@286: #Driver.MissingCompatibilityOperand = \ ohair@286: # the -compatibility option is missing an operand ohair@286: ohair@286: # Not concatenated with any other string (written on a separate line). ohair@286: Driver.MissingOperand = \ ohair@286: an operand is missing ohair@286: ohair@286: # Not concatenated with any other string (written on a separate line). ohair@286: Driver.MissingProxyHost = \ ohair@286: either the -host option is missing an operand \n\ ohair@286: or -port was specified but not -host ohair@286: ohair@286: # Not concatenated with any other string (written on a separate line). ohair@286: Driver.MissingProxyPort = \ ohair@286: either the -port option is missing an operand \n\ ohair@286: or -host was specified but not -port ohair@286: ohair@286: Driver.ILLEGAL_TARGET_VERSION = \ ohair@286: "{0}" is not a valid target version. "2.0" and "2.1" are supported. ohair@286: ohair@286: # Not concatenated with any other string (written on a separate line). ohair@286: Driver.MISSING_PROXYFILE = \ ohair@286: the -httpproxyfile option is missing an operand ohair@286: ohair@286: Driver.NO_SUCH_FILE = \ ohair@286: No such file: {0} ohair@286: ohair@286: Driver.ILLEGAL_PROXY = \ ohair@286: "{0}" is not a valid proxy format. The format is [user[:password]@]proxyHost:proxyPort ohair@286: ohair@286: # Not concatenated with any other string (written on a separate line). ohair@286: Driver.UnrecognizedMode = \ ohair@286: unrecognized mode {0} ohair@286: ohair@286: # Not concatenated with any other string (written on a separate line). ohair@286: Driver.UnrecognizedParameter = \ ohair@286: unrecognized parameter {0} ohair@286: ohair@286: Driver.UnsupportedEncoding = \ ohair@286: unsupported encoding: {0} ohair@286: ohair@286: Driver.MissingGrammar = \ ohair@286: grammar is not specified ohair@286: ohair@286: # {0} - namespace uri, {1} - local name of the attribute/element e.g.: Unexpected end of attribute {http://www.w3.org/XML/1998/namespace}:lang ohair@286: Driver.NotABindingFile = \ ohair@286: not an external binding file. The root element must be '{'http://java.sun.com/xml/ns/jaxb'}'bindings but it is '{'{0}'}'{1} ohair@286: ohair@286: # Not concatenated with any other string (written on a separate line). ohair@286: Driver.ParsingSchema = \ ohair@286: parsing a schema... ohair@286: ohair@286: Driver.ParseFailed = \ ohair@286: Failed to parse a schema. ohair@286: ohair@286: Driver.StackOverflow = \ ohair@286: Stack overflow. Either you are compiling a large schema that requires more resources, or \ ohair@286: XJC has a bug. First, please extend the stack size by using the -Xss JVM option. If this \ ohair@286: doesn'''t solve the problem, please use the -debug option to obtain the stack trace and \ ohair@286: contact Sun. ohair@286: ohair@286: # Not concatenated with any other string (written on a separate line). ohair@286: Driver.CompilingSchema = \ ohair@286: compiling a schema... ohair@286: ohair@286: Driver.FailedToGenerateCode = \ ohair@286: Failed to produce code. ohair@286: ohair@286: # DO NOT localize the 2.2.5-b10 string - it is a token for an ant ohair@286: Driver.FilePrologComment = \ ohair@286: This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-b10 \n\ ohair@286: See http://java.sun.com/xml/jaxb \n\ ohair@286: Any modifications to this file will be lost upon recompilation of the source schema. \n\ ohair@286: Generated on: {0} \n ohair@286: ohair@286: Driver.Version = \ ohair@286: xjc 2.2.5-b10 ohair@286: ohair@286: Driver.FullVersion = \ ohair@286: xjc full version "2.2.5-b10-b14" ohair@286: ohair@286: Driver.BuildID = 2.2.5-b10 ohair@286: ohair@286: # for JDK integration - include version in source zip ohair@286: jaxb.jdk.version=2.2.5-b10 ohair@286: ohair@286: # see java.text.SimpleDateFormat for format syntax ohair@286: # Format should not be changed, English locale is used to transform this string into a real date. Letters can be translated but the user should known that java.text.SimpleDateFormat is responsible for formatting (meaning of symbols can be found at http://docs.oracle.com/javase/tutorial/i18n/format/simpleDateFormat.html). ohair@286: Driver.DateFormat = \ ohair@286: yyyy.MM.dd ohair@286: ohair@286: # see java.text.SimpleDateFormat for format syntax ohair@286: # Format should not be changed, English locale is used to transform this string into a real time. Letters can be translated but the user should known that java.text.SimpleDateFormat is responsible for formatting (meaning of symbols can be found at http://docs.oracle.com/javase/tutorial/i18n/format/simpleDateFormat.html). ohair@286: Driver.TimeFormat = \ ohair@286: hh:mm:ss a z ohair@286: ohair@286: # as in: "generated on at