Field GERMAN
Field type: java.util.Locale
Member of: java.util.Locale
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 if (locale.getLanguage().equals(Locale.GERMAN.getLanguage())) {
2 if (request.getRequestURI().indexOf("/de/") > 0) wishedLocale = Locale.GERMAN;
3 f.setLocale(Locale.GERMAN);
4 request.addPreferredLocale(Locale.GERMAN);
5 request.addPreferredLocale(Locale.GERMAN);
6 f.setLocale(Locale.GERMAN);
7 model.add(Locale.GERMAN);
8 assertEquals( "locale at construction", Locale.GERMAN, list.get( 0 ) );
9 setLocale( request, Locale.GERMAN );
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.