there is an implementation in http://jakarta.apache.org/commons/resources/
> -----Original Message----- > From: Lance Frohman [mailto:[EMAIL PROTECTED] > Sent: Saturday, March 11, 2006 5:51 PM > To: 'MyFaces Discussion' > Subject: RE: Internationalization - East-european-characters > in resourcebundle > > Hi, I need the same functionality, > can you share this with the group? > > Thanks, > Lance > > -----Original Message----- > From: Harald Müller [mailto:[EMAIL PROTECTED] > Sent: Friday, March 10, 2006 12:35 AM > To: MyFaces Discussion > Subject: Re: Internationalization - East-european-characters > in resourcebundle > > Hi! > > Thank you ... works great! > > Brgds > H > > >> So ... Is there a way to extend ResourceBundle, fill it up with > >> parsed values from the xml-file and finally use it in my jsf-page > >> (with > <f:loadBundle/>)? > >> > >Yes, exactly that way. > >*) extend a class from ResourceBundle > >*) implement > > protected Object handleGetObject(String key) > > public Enumeration<String> getKeys() > > > >*) access it with <f:loadBundle > >basename="FQN.TO.YOUR.ResourceBundleClass" var="bundle"/> >

