I would like to be able to change the locale in my Swing application at runtime and have all the text elements on the screen update themselves with localized text from a ResourceBundle of the new locale.
Can this be done without customizing swing components or creating UIDelegates for all components that handle rendering localized text?
If no, then what is a good solution I can consider implementing?