4
votes
Best technology for adding plugin support to a J2SE application?
After many tries for plugin-based Java architectures (what is precisely what you seem to look for), I finally found JSPF to be the best s …
0
votes
How do I change JPanel inside a JFrame on the fly?
I suggest you to add both panel at frame creation, then change the visible panel by calling setVisible(true/false) on both.
When calling setVisible, the parent will be notified and asked to repaint …
0
votes
Java TokenField like Cocoa’s?
Although it does not seems to be implemented yet, you should take a look at macwidgets, and eventually ask for implementation of yo …
0
votes
Java - Retrieving amount of types in list
Besides all those solutions (I have a weakness for the Collections.Frequency call), i would recommend you to take a look at goo …
