src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/Messages.java

changeset 0
373ffda63c9a
child 637
9c07ef4934dd
equal deleted inserted replaced
-1:000000000000 0:373ffda63c9a
1 /*
2 * Copyright (c) 1997, 2014, 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 package com.sun.xml.internal.bind.v2.model.impl;
27
28 import java.text.MessageFormat;
29 import java.util.ResourceBundle;
30
31 /**
32 * Message resources
33 */
34 enum Messages {
35 // ClassInfoImpl
36 ID_MUST_BE_STRING, // 1 arg
37
38 MUTUALLY_EXCLUSIVE_ANNOTATIONS, // 2 args
39 DUPLICATE_ANNOTATIONS, // 1 arg
40 NO_DEFAULT_CONSTRUCTOR, // 1 arg
41 CANT_HANDLE_INTERFACE, // 1 arg
42 CANT_HANDLE_INNER_CLASS, // 1 arg
43 ANNOTATION_ON_WRONG_METHOD, // 0 args
44 GETTER_SETTER_INCOMPATIBLE_TYPE, // 2 args
45 DUPLICATE_ENTRY_IN_PROP_ORDER, // 1 arg
46 DUPLICATE_PROPERTIES, // 1 arg
47
48 XML_ELEMENT_MAPPING_ON_NON_IXMLELEMENT_METHOD, // 1 arg
49 SCOPE_IS_NOT_COMPLEXTYPE, // 1 arg
50 CONFLICTING_XML_ELEMENT_MAPPING, // 2 args
51
52 REFERENCE_TO_NON_ELEMENT, // 1 arg
53
54 NON_EXISTENT_ELEMENT_MAPPING, // 2 args
55
56 TWO_ATTRIBUTE_WILDCARDS, // 1 arg
57 SUPER_CLASS_HAS_WILDCARD, // 0 args
58 INVALID_ATTRIBUTE_WILDCARD_TYPE, // 1 arg
59 PROPERTY_MISSING_FROM_ORDER, // 1 arg
60 PROPERTY_ORDER_CONTAINS_UNUSED_ENTRY, // 2 args
61
62 INVALID_XML_ENUM_VALUE, // 2 arg
63 NO_IMAGE_WRITER, // 1 arg
64
65 ILLEGAL_MIME_TYPE, // 2 args
66 ILLEGAL_ANNOTATION, // 1 arg
67
68 MULTIPLE_VALUE_PROPERTY, // 0 args
69 ELEMENT_AND_VALUE_PROPERTY, // 0 args
70 CONFLICTING_XML_TYPE_MAPPING, // 1 arg
71 XMLVALUE_IN_DERIVED_TYPE, // 0 args
72 SIMPLE_TYPE_IS_REQUIRED, // 1 arg
73 PROPERTY_COLLISION, // 1 arg
74 INVALID_IDREF, // 1 arg
75 INVALID_XML_ELEMENT_REF, // 1 arg
76 NO_XML_ELEMENT_DECL, // 2 args
77 XML_ELEMENT_WRAPPER_ON_NON_COLLECTION, // 1 arg
78
79 ANNOTATION_NOT_ALLOWED, // 1 arg
80 XMLLIST_NEEDS_SIMPLETYPE, // 1 arg
81 XMLLIST_ON_SINGLE_PROPERTY, // 0 arg
82 NO_FACTORY_METHOD, // 2 args
83 FACTORY_CLASS_NEEDS_FACTORY_METHOD, // 1 arg
84
85 INCOMPATIBLE_API_VERSION, // 2 args
86 INCOMPATIBLE_API_VERSION_MUSTANG, // 2 args
87 RUNNING_WITH_1_0_RUNTIME, // 2 args
88
89 MISSING_JAXB_PROPERTIES, // 1arg
90 TRANSIENT_FIELD_NOT_BINDABLE, // 1 arg
91 THERE_MUST_BE_VALUE_IN_XMLVALUE, // 1 arg
92 UNMATCHABLE_ADAPTER, // 2 args
93 ANONYMOUS_ARRAY_ITEM, // 1 arg
94
95 ACCESSORFACTORY_INSTANTIATION_EXCEPTION, // 2 arg
96 ACCESSORFACTORY_ACCESS_EXCEPTION, // 2 arg
97 CUSTOM_ACCESSORFACTORY_PROPERTY_ERROR, // 2 arg
98 CUSTOM_ACCESSORFACTORY_FIELD_ERROR, // 2 arg
99 XMLGREGORIANCALENDAR_INVALID, // 1 arg
100 XMLGREGORIANCALENDAR_SEC, // 0 arg
101 XMLGREGORIANCALENDAR_MIN, // 0 arg
102 XMLGREGORIANCALENDAR_HR, // 0 arg
103 XMLGREGORIANCALENDAR_DAY, // 0 arg
104 XMLGREGORIANCALENDAR_MONTH, // 0 arg
105 XMLGREGORIANCALENDAR_YEAR, // 0 arg
106 XMLGREGORIANCALENDAR_TIMEZONE, // 0 arg
107 ;
108
109 private static final ResourceBundle rb = ResourceBundle.getBundle(Messages.class.getName());
110
111 @Override
112 public String toString() {
113 return format();
114 }
115
116 public String format( Object... args ) {
117 return MessageFormat.format( rb.getString(name()), args );
118 }
119 }

mercurial