Example usage for com.vaadin.client LocaleService getClockDelimiter

List of usage examples for com.vaadin.client LocaleService getClockDelimiter

Introduction

In this page you can find the example usage for com.vaadin.client LocaleService getClockDelimiter.

Prototype

public static String getClockDelimiter(String locale) throws LocaleNotLoadedException 

Source Link

Usage

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 ":";
    }
}