1 4 package org.contineo.core; 5 6 10 public class LocaleBean { 11 12 15 public String getDateFormat(String language) { 16 String dateFormat; 17 if (language.equalsIgnoreCase("de")) 18 dateFormat = "dd.MM.yyyy"; 19 else if (language.equalsIgnoreCase("fr")) 20 dateFormat = "dd/MM/yyyy"; 21 else if (language.equalsIgnoreCase("es")) 22 dateFormat = "dd-MM-yyyy"; 23 else if (language.equalsIgnoreCase("it")) 24 dateFormat = "dd-MM-yyyy"; 25 else 26 dateFormat = "yyyy/MM/dd"; 27 28 return dateFormat; 29 } 30 } | Popular Tags |