/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution License("CDDL") (collectively, the "License"). You * may not use this file except in compliance with the License. You can * obtain a copy of the License at * https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html * or packager/legal/LICENSE.txt. See the License for the specific * language governing permissions and limitations under the License. * * When distributing the software, include this License Header Notice in each * file and include the License file at packager/legal/LICENSE.txt. * * GPL Classpath Exception: * Oracle designates this particular file as subject to the "Classpath" * exception as provided by Oracle in the GPL Version 2 section of the License * file that accompanied this code. * * Modifications: * If applicable, add the following below the License Header, with the fields * enclosed by brackets [] replaced by your own identifying information: * "Portions Copyright [year] [name of copyright owner]" * * Contributor(s): * If you wish your version of this file to be governed by only the CDDL or * only the GPL Version 2, indicate your decision by adding "[Contributor] * elects to include this software in this distribution under the [CDDL or GPL * Version 2] license." If you don't indicate a single choice of license, a * recipient has the option to distribute your version of this file under * either the CDDL, the GPL Version 2 or to extend the choice of license to * its licensees as provided above. However, if you add GPL Version 2 code * and therefore, elected the GPL Version 2 license, then the option applies * only if the new code is made subject to such option by the copyright * holder. */ package com.sun.tools.xjc.reader.xmlschema; import java.text.MessageFormat; import java.util.ResourceBundle; /** * Formats error messages. */ public class Messages { /** Loads a string resource and formats it with specified arguments. */ public static String format( String property, Object... args ) { String text = ResourceBundle.getBundle(Messages.class.getPackage().getName() +".MessageBundle").getString(property); return MessageFormat.format(text,args); } static final String WARN_NO_GLOBAL_ELEMENT = "BGMBuilder.NoGlobalElement"; public static final String WARN_UNUSED_EXPECTED_CONTENT_TYPES = "UnusedCustomizationChecker.WarnUnusedExpectedContentTypes"; static final String ERR_MULTIPLE_SCHEMA_BINDINGS = "BGMBuilder.MultipleSchemaBindings"; // arg:1 static final String ERR_MULTIPLE_SCHEMA_BINDINGS_LOCATION = "BGMBuilder.MultipleSchemaBindings.Location"; // arg:0 static final String JAVADOC_HEADING = // 1 arg "ClassSelector.JavadocHeading"; static final String ERR_RESERVED_CLASS_NAME = // 1 arg "ClassSelector.ReservedClassName"; static final String ERR_CLASS_NAME_IS_REQUIRED = "ClassSelector.ClassNameIsRequired"; // arg:0 static final String ERR_INCORRECT_CLASS_NAME = "ClassSelector.IncorrectClassName"; // arg:1 static final String ERR_INCORRECT_PACKAGE_NAME = "ClassSelector.IncorrectPackageName"; // arg:2 static final String ERR_CANNOT_BE_TYPE_SAFE_ENUM = "ConversionFinder.CannotBeTypeSafeEnum"; // arg:0 static final String ERR_CANNOT_BE_TYPE_SAFE_ENUM_LOCATION = "ConversionFinder.CannotBeTypeSafeEnum.Location"; // arg:0 static final String ERR_NO_ENUM_NAME_AVAILABLE = "ConversionFinder.NoEnumNameAvailable"; // arg:0 static final String ERR_NO_ENUM_FACET = "ConversionFinder.NoEnumFacet"; // arg:0 static final String ERR_ILLEGAL_EXPECTED_MIME_TYPE = "ERR_ILLEGAL_EXPECTED_MIME_TYPE"; // args:2 static final String ERR_DATATYPE_ERROR = "DatatypeBuilder.DatatypeError"; // arg:1 static final String ERR_UNABLE_TO_GENERATE_NAME_FROM_MODELGROUP = "DefaultParticleBinder.UnableToGenerateNameFromModelGroup"; // arg:0 static final String ERR_INCORRECT_FIXED_VALUE = "FieldBuilder.IncorrectFixedValue"; // arg:1 static final String ERR_INCORRECT_DEFAULT_VALUE = "FieldBuilder.IncorrectDefaultValue"; // arg:1 static final String ERR_CONFLICT_BETWEEN_USERTYPE_AND_ACTUALTYPE_ATTUSE = "FieldBuilder.ConflictBetweenUserTypeAndActualType.AttUse"; // arg:2 static final String ERR_CONFLICT_BETWEEN_USERTYPE_AND_ACTUALTYPE_ATTUSE_SOURCE = "FieldBuilder.ConflictBetweenUserTypeAndActualType.AttUse.Source"; // arg:0 static final String ERR_UNNESTED_JAVATYPE_CUSTOMIZATION_ON_SIMPLETYPE = "SimpleTypeBuilder.UnnestedJavaTypeCustomization"; // arg:0 static final String JAVADOC_NIL_PROPERTY = "FieldBuilder.Javadoc.NilProperty"; // arg:1 static final String JAVADOC_LINE_UNKNOWN = // 0 args "ClassSelector.JavadocLineUnknown"; static final String JAVADOC_VALUEOBJECT_PROPERTY = "FieldBuilder.Javadoc.ValueObject"; // args:2 static final String MSG_COLLISION_INFO = "CollisionInfo.CollisionInfo"; // args:3 static final String MSG_UNKNOWN_FILE = "CollisionInfo.UnknownFile"; // arg:1 static final String MSG_LINE_X_OF_Y = "CollisionInfo.LineXOfY"; // args:2 static final String MSG_FALLBACK_JAVADOC = "DefaultParticleBinder.FallbackJavadoc"; // arg:1 static final String ERR_ENUM_MEMBER_NAME_COLLISION = "ERR_ENUM_MEMBER_NAME_COLLISION"; static final String ERR_ENUM_MEMBER_NAME_COLLISION_RELATED = "ERR_ENUM_MEMBER_NAME_COLLISION_RELATED"; static final String ERR_CANNOT_GENERATE_ENUM_NAME = "ERR_CANNOT_GENERATE_ENUM_NAME"; static final String WARN_ENUM_MEMBER_SIZE_CAP = "WARN_ENUM_MEMBER_SIZE_CAP"; // args: 3 // they are shared from the model public static final String ERR_UNACKNOWLEDGED_CUSTOMIZATION = "UnusedCustomizationChecker.UnacknolwedgedCustomization"; // arg:1 public static final String ERR_UNACKNOWLEDGED_CUSTOMIZATION_LOCATION = "UnusedCustomizationChecker.UnacknolwedgedCustomization.Relevant"; // arg:0 public static final String ERR_MULTIPLE_GLOBAL_BINDINGS = "ERR_MULTIPLE_GLOBAL_BINDINGS"; public static final String ERR_MULTIPLE_GLOBAL_BINDINGS_OTHER = "ERR_MULTIPLE_GLOBAL_BINDINGS_OTHER"; public static final String ERR_REFERENCE_TO_NONEXPORTED_CLASS = "ERR_REFERENCE_TO_NONEXPORTED_CLASS"; public static final String ERR_REFERENCE_TO_NONEXPORTED_CLASS_MAP_FALSE = "ERR_REFERENCE_TO_NONEXPORTED_CLASS_MAP_FALSE"; public static final String ERR_REFERENCE_TO_NONEXPORTED_CLASS_REFERER = "ERR_REFERENCE_TO_NONEXPORTED_CLASS_REFERER"; static final String WARN_DEFAULT_VALUE_PRIMITIVE_TYPE = "WARN_DEFAULT_VALUE_PRIMITIVE_TYPE"; }