I'm having a problem using the Swing Application Framework's Component Resource Injection, I read the tutorial provided by Sun and it kinda works.

The case is that I have a class Program that extends from the SingleFrameApplication provided by de SAF, now I want to get the text of my components (buttons and labels, etc.) from a properties file and it works as expected for that Program class, (I created a subdirectory called resources and put the Program.properties file in there). But, I have a MainFrame within a subpackage named mainpkg.gui (the Program is within the mainpkg package) and I created the corresponding resources subsubpackage for placing the MainFrame.properties file, and it does not work! I cannot get the bundle (automatically, I guess if I use the ResourceMap.getXXX() method I'd get the stuff.

What am I doing wrong?

Thanks in advance!

link|improve this question

64% accept rate
Is your MainFrame a subclass of SingleFrameApplication ? or is it a direct descendant of JFrame ? – Riduidel Jan 26 '11 at 16:59
Is your MainFrame realized dynamically? You can inject the resources dynamically Application.getInstance().getContext().getResourceMap().injectComponent(this); – Joshua Nov 2 '11 at 15:58
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.