1package org.apache.archiva.converter.artifact;
23/*4 * Licensed to the Apache Software Foundation (ASF) under one5 * or more contributor license agreements. See the NOTICE file6 * distributed with this work for additional information7 * regarding copyright ownership. The ASF licenses this file8 * to you under the Apache License, Version 2.0 (the9 * "License"); you may not use this file except in compliance10 * with the License. You may obtain a copy of the License at11 *12 * http://www.apache.org/licenses/LICENSE-2.013 *14 * Unless required by applicable law or agreed to in writing,15 * software distributed under the License is distributed on an16 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY17 * KIND, either express or implied. See the License for the18 * specific language governing permissions and limitations19 * under the License.20 */2122import java.text.MessageFormat;
23import java.util.MissingResourceException;
24import java.util.ResourceBundle;
2526/**27 * Messages 28 *29 *30 */31publicclassMessages32 {
33privatestaticfinal String BUNDLE_NAME = "org.apache.archiva.converter.artifact.messages"; //$NON-NLS-1$3435privatestaticfinal ResourceBundle RESOURCE_BUNDLE = ResourceBundle.getBundle( BUNDLE_NAME );
3637privateMessages()
38 {
39// no op40 }
4142publicstatic String getString( String key )
43 {
44try45 {
46return RESOURCE_BUNDLE.getString( key );
47 }
48catch ( MissingResourceException e )
49 {
50return '!' + key + '!';
51 }
52 }
5354publicstatic String getString( String key, Object argument )
55 {
56return getString( key, new Object[] { argument } );
57 }
5859publicstatic String getString( String key, Object arguments[] )
60 {
61try62 {
63 String pattern = RESOURCE_BUNDLE.getString( key );
64return MessageFormat.format( pattern, arguments );
65 }
66catch ( MissingResourceException e )
67 {
68return '!' + key + '!';
69 }
70 }
71 }