List of usage examples for com.vaadin.client LocaleService getClockDelimiter
public static String getClockDelimiter(String locale) throws LocaleNotLoadedException
From source file:com.vaadin.client.DateTimeService.java
License:Apache License
public String getClockDelimeter() { try {/*from w w w.j a v a 2 s. co m*/ return LocaleService.getClockDelimiter(locale); } catch (final LocaleNotLoadedException e) { getLogger().log(Level.SEVERE, "Error in getClockDelimiter", e); return ":"; } }