/[schmitzm]/trunk/src/skrueger/i8n/I8NUtil.java
ViewVC logotype

Contents of /trunk/src/skrueger/i8n/I8NUtil.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 142 - (show annotations)
Mon Jun 15 12:09:05 2009 UTC (15 years, 8 months ago) by alfonx
File size: 2536 byte(s)
just removed a debug line
1 package skrueger.i8n;
2
3 import java.util.Locale;
4 import java.util.Set;
5 import java.util.TreeSet;
6
7 import org.apache.log4j.Logger;
8
9 public class I8NUtil {
10 static final Logger LOGGER = Logger.getLogger(I8NUtil.class);
11
12 private static Set<String> languageCodes = new TreeSet<String>();
13 static {
14 for (Locale locale : java.util.Locale.getAvailableLocales()) {
15 getLanguageCodes().add(locale.getLanguage());
16 }
17 // for (String code : java.util.Locale.getISOLanguages()) {
18 // getLanguageCodes().add(code);
19 // }
20 }
21
22 /**
23 * @author Stefan Alfons Krüger
24 * @param code
25 * @return true if the code paramter is a valid ISO Language code
26 */
27 public static boolean isValidISOLangCode(String code) {
28 return getLanguageCodes().contains(code);
29 }
30
31 /**
32 * @return All language codes available in
33 * java.util.Locale.getISOLanguages() without duplicates.
34 */
35 public static Set<String> getLanguageCodes() {
36 return languageCodes;
37 }
38
39 /**
40 * @param code
41 * A two-letter language code.
42 * @return <code>null</code> or one (of many possible) {@link Locale} that
43 * uses this language.
44 */
45 public static Locale getLocaleFor(String code) {
46 for (Locale l : Locale.getAvailableLocales()) {
47 if (l.getLanguage().equals(code.toLowerCase())) {
48 return l;
49 }
50 // LOGGER.debug(l.getLanguage() + " not = " + code);
51 }
52
53 LOGGER.error("Can't create a Locale for code " + code
54 + "! Returning the system default locale to avoid NPEs.");
55
56 return Locale.getDefault();
57 }
58
59 /**
60 * A convenience method that checks if the {@link Translation} object
61 * contains a translation for the active language. A {@link String}
62 * containing only spaces will return <code>false</code>.
63 *
64 * @param trans
65 * {@link Translation} to check.
66 */
67 public static boolean isEmpty(final Translation trans) {
68 if (trans == null)
69 return true;
70 return isEmpty(trans.toString());
71 }
72
73 /**
74 * A convenience method that checks if the {@link String} returned by from a
75 * {@link Translation} object contains a "valid" translation for the active
76 * language. A {@link String} containing only spaces or equals
77 * {@link Translation}.NO_TRANSLATION will return <code>false</code>.
78 *
79 * @param transString
80 * {@link String} to check.
81 */
82 public static boolean isEmpty(final String transString) {
83 if (transString == null)
84 return true;
85 if (transString.trim().isEmpty())
86 return true;
87 if (transString.equals(Translation.NO_TRANSLATION))
88 return true;
89 return false;
90 }
91 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26