Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.framework / org.gvsig.andami / src / main / java / org / gvsig / andami / messages / Messages.java @ 47816

History | View | Annotate | Download (2.47 KB)

1 40559 jjdelcerro
/**
2
 * gvSIG. Desktop Geographic Information System.
3 40435 jjdelcerro
 *
4 40559 jjdelcerro
 * Copyright (C) 2007-2013 gvSIG Association.
5 40435 jjdelcerro
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8 40559 jjdelcerro
 * as published by the Free Software Foundation; either version 3
9 40435 jjdelcerro
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18 40559 jjdelcerro
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20 40435 jjdelcerro
 *
21 40559 jjdelcerro
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23 40435 jjdelcerro
 */
24
package org.gvsig.andami.messages;
25
26
import java.util.Locale;
27
import java.util.ResourceBundle;
28
29
30
/**
31
 * Clase que accede a los recursos para la i18n
32
 */
33
public class Messages {
34
    /** DOCUMENT ME! */
35
    private static final String BUNDLE_NAME = "org.gvsig.andami.text";
36
37
    /** DOCUMENT ME! */
38
    private static ResourceBundle RESOURCE_BUNDLE = null;
39
40
    /**
41
     * Inicializa la clase con el locale adecuado
42
     *
43
     * @param loc Locale de la aplicaci?n
44
     */
45
    public static void init(Locale loc) {
46
            return;
47
    }
48
49
    /**
50
     * @param strLocale. Ejemplo: va para valenciano
51
     * Se trata de permitir coexistir el valenciano con el catal?n.
52
     * El m?todo buscar? un fichero properties llamado "text_va.properties"
53
     * para usarlo con RESOURCE_BUNDLE de donde sacar los mensajes
54
     * traducidos.
55
     */
56
    public static void init(String strLocale) {
57
            return;
58
    }
59
60
61
    /**
62
     * Obtiene el valor del recurso con clave 'key'
63
     *
64
     * @param key clave del recurso que se quiere obtener
65
     *
66
     * @return recurso que se quiere obtener o !key! en caso de no encontrarlo.
67
     *         En dicho caso no se notifica al framework ya que  estos son los
68
     *         mensajes propios de la aplicaci?n y deben de estar todos
69
     */
70
    public static String getString(String key) {
71
        return org.gvsig.i18n.Messages.getText(key, "org.gvsig.andami.messages.Messages");
72
    }
73
74
    public static String get(String key) {
75
        return org.gvsig.i18n.Messages.getText(key, "org.gvsig.andami.messages.Messages");
76
    }
77
}