001    /*----------------    FILE HEADER  ------------------------------------------
002    
003     This file is part of deegree.
004     Copyright (C) 2001-2008 by:
005     EXSE, Department of Geography, University of Bonn
006     http://www.giub.uni-bonn.de/deegree/
007     lat/lon GmbH
008     http://www.lat-lon.de
009    
010     This library is free software; you can redistribute it and/or
011     modify it under the terms of the GNU Lesser General Public
012     License as published by the Free Software Foundation; either
013     version 2.1 of the License, or (at your option) any later version.
014    
015     This library is distributed in the hope that it will be useful,
016     but WITHOUT ANY WARRANTY; without even the implied warranty of
017     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
018     Lesser General Public License for more details.
019    
020     You should have received a copy of the GNU Lesser General Public
021     License along with this library; if not, write to the Free Software
022     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
023    
024     Contact:
025    
026     Andreas Poth
027     lat/lon GmbH
028     Aennchenstr. 19
029     53115 Bonn
030     Germany
031     E-Mail: poth@lat-lon.de
032    
033     Prof. Dr. Klaus Greve
034     Department of Geography
035     University of Bonn
036     Meckenheimer Allee 166
037     53115 Bonn
038     Germany
039     E-Mail: greve@giub.uni-bonn.de
040    
041     
042     ---------------------------------------------------------------------------*/
043    package org.deegree.tools.importer;
044    
045    import java.text.MessageFormat;
046    import java.util.Locale;
047    import java.util.MissingResourceException;
048    import java.util.ResourceBundle;
049    
050    public class Messages {
051    
052        private static final String BUNDLE_NAME = "org.deegree.tools.importer.messages";
053    
054        private Messages() {
055        }
056    
057        public static String getString( String key, Object... arguments ) {
058            try {
059                Locale locale = Locale.ENGLISH;
060                ResourceBundle rb = ResourceBundle.getBundle( BUNDLE_NAME, locale );
061                String s = rb.getString( key );
062                if ( s != null ) {
063                    return MessageFormat.format( s, arguments );
064                }
065                return s;
066            } catch ( MissingResourceException e ) {
067                return "!Cannot find message with key " + key + "!";
068            }
069        }
070    }