Package de.uplanet.lucy.server.locale
Interface ILocaleFormatsChangedEvent
-
- All Superinterfaces:
IConfigurationEvent
,IServerEvent
@Scriptable public interface ILocaleFormatsChangedEvent extends IConfigurationEvent
This event occurs if the supported locales have changed.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description de.uplanet.lucy.locale.ILocaleFormat
getNewDefaultLocaleFormat()
List<de.uplanet.lucy.locale.ILocaleFormat>
getNewLocaleFormats()
de.uplanet.lucy.locale.ILocaleFormat
getOldDefaultLocaleFormat()
List<de.uplanet.lucy.locale.ILocaleFormat>
getOldLocaleFormats()
-
-
-
Method Detail
-
getOldDefaultLocaleFormat
de.uplanet.lucy.locale.ILocaleFormat getOldDefaultLocaleFormat()
- Returns:
- The old default locale format.
-
getNewDefaultLocaleFormat
de.uplanet.lucy.locale.ILocaleFormat getNewDefaultLocaleFormat()
- Returns:
- The new default locale format.
-
getOldLocaleFormats
List<de.uplanet.lucy.locale.ILocaleFormat> getOldLocaleFormats()
- Returns:
- An unmodifiable lexicographically sorted list of the old locale format.
-
getNewLocaleFormats
List<de.uplanet.lucy.locale.ILocaleFormat> getNewLocaleFormats()
- Returns:
- An unmodifiable lexicographically sorted list of the new locale format.
-
-