01: /*
02: * SQLeonardo :: java database frontend
03: * Copyright (C) 2004 nickyb@users.sourceforge.net
04: *
05: * This program is free software; you can redistribute it and/or
06: * modify it under the terms of the GNU General Public License
07: * as published by the Free Software Foundation; either version 2
08: * of the License, or (at your option) any later version.
09: *
10: * This program is distributed in the hope that it will be useful,
11: * but WITHOUT ANY WARRANTY; without even the implied warranty of
12: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13: * GNU General Public License for more details.
14: *
15: * You should have received a copy of the GNU General Public License
16: * along with this program; if not, write to the Free Software
17: * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18: *
19: *
20: * This class was contributed by JasperSoft Corp.
21: */
22:
23: package nickyb.sqleonardo.common.util;
24:
25: import java.util.Locale;
26:
27: /**
28: *
29: * @author gtoffoli
30: */
31: /**
32: * A simple class to enable locales to be placed in a combo box.
33: *
34: */
35: public class LocaleAdapter {
36: Locale l;
37:
38: public LocaleAdapter(Locale locale) {
39: l = locale;
40: }
41:
42: public Locale getLocale() {
43: return l;
44: }
45:
46: // ==> Modified by RL, June 3, 2005, introducing getVariant and Language Papiamentu
47: // Getdisplayname is now used to display the name according to the Locale.
48: // Possibly in Chinese language parts are combined differently.
49: public String toString() {
50: if (l.getLanguage().equals("")) {
51: return "";
52: } else {
53: return l.getDisplayName();
54: }
55: }
56:
57: }
|