001 //$HeadURL: svn+ssh://rbezema@svn.wald.intevation.org/deegree/base/tags/2.1/src/org/deegree/model/csct/units/resources/Resources_en.java $
002 /*
003 * SEAGIS - An OpenSource implementation of OpenGIS specification
004 * (C) 2001, Institut de Recherche pour le D�veloppement
005 *
006 * This library is free software; you can redistribute it and/or
007 * modify it under the terms of the GNU Lesser General Public
008 * License as published by the Free Software Foundation; either
009 * version 2.1 of the License, or (at your option) any later version.
010 *
011 * This library is distributed in the hope that it will be useful,
012 * but WITHOUT ANY WARRANTY; without even the implied warranty of
013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
014 * Lesser General Public License for more details.
015 *
016 * You should have received a copy of the GNU Lesser General Public
017 * License along with this library; if not, write to the Free Software
018 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
019 *
020 *
021 * Contacts:
022 * FRANCE: Surveillance de l'Environnement Assist�e par Satellite
023 * Institut de Recherche pour le D�veloppement / US-Espace
024 * mailto:seasnet@teledetection.fr
025 *
026 * CANADA: Observatoire du Saint-Laurent
027 * Institut Maurice-Lamontagne
028 * mailto:osl@osl.gc.ca
029 */
030 package org.deegree.model.csct.units.resources;
031
032
033 /**
034 * English language resource.
035 *
036 * @version 1.0
037 * @author Martin Desruisseaux
038 */
039 public class Resources_en extends Resources
040 {
041 /**
042 * The resource file, using UTF-8 encoding.
043 */
044 static final String FILEPATH = "javax/units/resources/resources_en.properties";
045
046 /**
047 * Construct resources for English.
048 */
049 public Resources_en()
050 {super(FILEPATH);}
051 }