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