325N/A#
325N/A# Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
325N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
325N/A#
325N/A# This code is free software; you can redistribute it and/or modify it
325N/A# under the terms of the GNU General Public License version 2 only, as
325N/A# published by the Free Software Foundation. Oracle designates this
325N/A# particular file as subject to the "Classpath" exception as provided
325N/A# by Oracle in the LICENSE file that accompanied this code.
325N/A#
325N/A# This code is distributed in the hope that it will be useful, but WITHOUT
325N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
325N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
325N/A# version 2 for more details (a copy is included in the LICENSE file that
325N/A# accompanied this code).
325N/A#
325N/A# You should have received a copy of the GNU General Public License version
325N/A# 2 along with this work; if not, write to the Free Software Foundation,
325N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
325N/A#
325N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
325N/A# or visit www.oracle.com if you need additional information or have any
325N/A# questions.
325N/A#
325N/A
325N/AID_MUST_BE_STRING = \
325N/A Property "{0}" has an XmlID annotation but its type is not String.
325N/A
325N/AMUTUALLY_EXCLUSIVE_ANNOTATIONS = \
325N/A {0} has mutually exclusive annotations @{1} and @{2}
325N/A
325N/ADUPLICATE_ANNOTATIONS = \
325N/A @{0} annotation is found on two places; one would be suffice.
325N/A
325N/ANO_DEFAULT_CONSTRUCTOR = \
325N/A {0} does not have a no-arg default constructor.
325N/A
325N/ACANT_HANDLE_INTERFACE = \
325N/A {0} is an interface, and JAXB can''t handle interfaces.
325N/A
325N/ACANT_HANDLE_INNER_CLASS = \
325N/A {0} is a non-static inner class, and JAXB can''t handle those.
325N/A
325N/AANNOTATION_ON_WRONG_METHOD = \
325N/A JAXB annotation is placed on a method that is not a JAXB property
325N/A
325N/AGETTER_SETTER_INCOMPATIBLE_TYPE = \
325N/A The type of the getter is {0} but that of the setter is {1}. They have to be the same.
325N/A
325N/ADUPLICATE_ENTRY_IN_PROP_ORDER = \
325N/A Property "{0}" appears more than once in the @XmlType.propOrder
325N/A
325N/ADUPLICATE_PROPERTIES = \
325N/A There are two properties named "{0}"
325N/A
325N/AXML_ELEMENT_MAPPING_ON_NON_IXMLELEMENT_METHOD = \
325N/A The {0} method has @XmlElementMapping on it, but it doesn''t return a sub-type of JAXBElement.
325N/A
325N/ASCOPE_IS_NOT_COMPLEXTYPE = \
325N/A {0} is not bound to a complex type, and therefore illegal as the scope.
325N/A
325N/ACONFLICTING_XML_ELEMENT_MAPPING = \
325N/A The element name '{'{0}'}'{1} has more than one mapping.
325N/A
325N/AREFERENCE_TO_NON_ELEMENT = \
325N/A Property {0} is annotated with @XmlReference but doesn''t refer to an element.
325N/A
325N/ANON_EXISTENT_ELEMENT_MAPPING = \
325N/A No element mapping exists for "{0}":"{1}"
325N/A
325N/ATWO_ATTRIBUTE_WILDCARDS = \
325N/A {0} has two properties with the @XmlAnyAttribute annotation.
325N/A
325N/ASUPER_CLASS_HAS_WILDCARD = \
325N/A Can''t have @XmlAnyAttribute when a base class has it already.
325N/A
325N/AINVALID_ATTRIBUTE_WILDCARD_TYPE = \
325N/A @XmlAnyAttribute is placed on a property whose type is {0} but it needs to be assignable to java.util.Map.
325N/A
325N/APROPERTY_MISSING_FROM_ORDER = \
325N/A Property {0} is present but not specified in @XmlType.propOrder
325N/A
325N/APROPERTY_ORDER_CONTAINS_UNUSED_ENTRY = \
325N/A Property {0} appears in @XmlType.propOrder, but no such property exists. Maybe you meant {1}?
325N/A
325N/AINVALID_XML_ENUM_VALUE = \
325N/A "{0}" is not a valid value for {1}.
325N/A
325N/AFAILED_TO_INITIALE_DATATYPE_FACTORY = \
325N/A Failed to initialize JAXP 1.3 DatatypeFactory class.
325N/A
325N/ANO_IMAGE_WRITER = \
325N/A No javax.imageio.ImageWriter is available for the specified MIME type "{0}"
325N/A
325N/AILLEGAL_MIME_TYPE = \
325N/A "{0}" is not a valid MIME type: {1}
325N/A
325N/AILLEGAL_ANNOTATION = \
325N/A {0} annotation cannot be placed here
325N/A
325N/AMULTIPLE_VALUE_PROPERTY = \
325N/A @XmlValue is only allowed one per class, but two properties are annotated with @XmlValue.
325N/A
325N/AXMLVALUE_IN_DERIVED_TYPE = \
325N/A @XmlValue is not allowed on a class that derives another class.
325N/A
325N/AELEMENT_AND_VALUE_PROPERTY = \
325N/A If a class has @XmlElement property, it cannot have @XmlValue property.
325N/A
325N/ACONFLICTING_XML_TYPE_MAPPING = \
325N/A Two classes have the same XML type name "{0}". Use @XmlType.name and @XmlType.namespace to \
325N/A assign different names to them.
325N/A
325N/ASIMPLE_TYPE_IS_REQUIRED = \
325N/A @XmlAttribute/@XmlValue need to reference a Java type that maps to text in XML.
325N/A
325N/APROPERTY_COLLISION = \
325N/A Class has two properties of the same name "{0}"
325N/A
325N/AINVALID_IDREF = \
325N/A XmlIDREF property is referencing a type "{0}" that doesn''t have an XmlID property.
325N/A
325N/AINVALID_XML_ELEMENT_REF = \
325N/A Invalid @XmlElementRef : Type "{0}" or any of it's subclasses are not known to this context.
325N/A
325N/ANO_XML_ELEMENT_DECL = \
325N/A There''s no ObjectFactory with an @XmlElementDecl for the element '{'{0}'}'{1}.
325N/A
325N/AXML_ELEMENT_WRAPPER_ON_NON_COLLECTION = \
325N/A @XmlElementWrapper is only allowed on a collection property but "{0}" is not a collection property.
325N/A
325N/AANNOTATION_NOT_ALLOWED = \
325N/A {0} annotation is not allowed on this kind of property.
325N/A
325N/AXMLLIST_NEEDS_SIMPLETYPE = \
325N/A {0} maps to a structured XML fragment (AKA complex type), and therefore incompatible with @XmlList.
325N/A
325N/AXMLLIST_ON_SINGLE_PROPERTY = \
325N/A @XmlList cannot be placed on a single-value property
325N/A
325N/ANO_FACTORY_METHOD = \
325N/A Factory class "{0}" does not have static zero args factory method "{1}".
325N/A
325N/AFACTORY_CLASS_NEEDS_FACTORY_METHOD = \
325N/A XmlType has not defined a factory method for Factory class "{0}".
325N/A
325N/AMISSING_JAXB_PROPERTIES = \
325N/A Package "{0}" is missing jaxb.properties file. Have you copied this from the generated source directory or include it in the classpath?
325N/A
325N/ATRANSIENT_FIELD_NOT_BINDABLE = \
325N/A Transient field "{0}" cannot have any JAXB annotations.
325N/A
325N/ATHERE_MUST_BE_VALUE_IN_XMLVALUE = \
325N/A Object must have some value in its @XmlValue field: {0}
325N/A
325N/AINCOMPATIBLE_API_VERSION = \
325N/A JAXB 2.1 API jar is being loaded (from {0}), but this RI (from {1}) requires JAXB 2.2 API jar.
325N/A
325N/AINCOMPATIBLE_API_VERSION_MUSTANG = \
325N/A JAXB 2.1 API is being loaded from the bootstrap classloader, but this RI (from {1}) needs 2.2 API. \
325N/A Use the endorsed directory mechanism to place jaxb-api.jar in the bootstrap classloader. \
325N/A (See http://java.sun.com/j2se/1.6.0/docs/guide/standards/)
325N/A
325N/ARUNNING_WITH_1_0_RUNTIME = \
325N/A You are trying to run JAXB 2.0 runtime (from {1}) but you have old JAXB 1.0 runtime earlier \
325N/A in the classpath (at {0}) Please remove the JAXB 1.0 runtime for 2.0 runtime to work correctly.
325N/A
325N/AUNMATCHABLE_ADAPTER = \
325N/A Adapter {0} is not applicable to the field type {1}.
325N/A
325N/AACCESSORFACTORY_INSTANTIATION_EXCEPTION = \
325N/A Unable to create instance of AccessorFactory, {0} for class {1}.
325N/A
325N/AACCESSORFACTORY_ACCESS_EXCEPTION = \
325N/A Unable to access instance of AccessorFactory, {0} for class {1}.
325N/A
325N/ACUSTOM_ACCESSORFACTORY_PROPERTY_ERROR = \
325N/A Custom AccessorFactory, {0}, is reporting an error accessing a property. {1}
325N/A
325N/ACUSTOM_ACCESSORFACTORY_FIELD_ERROR = \
325N/A Custom AccessorFactory, {0}, is reporting an error accessing a field. {1}
325N/A
325N/AANONYMOUS_ARRAY_ITEM = \
325N/A {0} is used as an array component type, so it cannot be anonymous.
325N/A
325N/AXMLGREGORIANCALENDAR_INVALID = \
325N/A Invalid set of fields set for XMLGregorianCalendar type {0}.
325N/A
325N/AXMLGREGORIANCALENDAR_SEC = \
325N/A Seconds not set.
325N/A
325N/AXMLGREGORIANCALENDAR_MIN = \
325N/A Minutes not set.
325N/A
325N/AXMLGREGORIANCALENDAR_HR = \
325N/A Hour not set.
325N/A
325N/AXMLGREGORIANCALENDAR_DAY = \
325N/A Day not set.
325N/A
325N/AXMLGREGORIANCALENDAR_MONTH = \
325N/A Month not set.
325N/A
325N/AXMLGREGORIANCALENDAR_YEAR = \
325N/A Year not set.
325N/A
325N/AXMLGREGORIANCALENDAR_TIMEZONE = \
325N/A Timezone not set.