André Asantos wrote:anybody knows anything of ListResourceBundle? in my job I saw a class that extended this one is it a class for what?
bye,
André AS
São Paulo - Brazil
ResourceBundles are commonly used to add support for internationalization (i18n), more on that in the JavaDocs
here.
More often than not this is based on .properties files (see java.util.Properties) and the concrete ResourceBundle implementation PropertyResourceBundle is used.
Basically, the abstract ListResourceBundle implementation allows you to easily create a ResourceBundle implementation based on a mechanism other than .properties files.
Build a man a fire, and he'll be warm for a day. Set a man on fire, and he'll be warm for the rest of his life.