Hello,
I'd like to learn how to effectively use Swing Application Framework. Most of the the examples I've found are blog entries that just explain how to great it is to extend SingleFrameApplication and override its startup method, but that's about it. Sun's article is almost two years old, as is the project's own introduction, and the...
Could someone explain how I should use resource injection when I have several packages in my application? I seem unable to load resources in any other package but the one where I have the SingleFrameApplication descendant. Let's say this is what my application structure looks like:
/resources
/main
/main/resources
/view
/view/resources
...
I'm trying to create a simple Java desktop application using the Swing Application Framework and the MVC model but I'm struggling on some areas because there is a lack of good examples (the only SAF examples I have found are anything but MVC!).
I manage to fire events from components, but apart from that I struggle to use the MVC model ...
I am creating a program for database manipulation with proper GUI and all. I am using swing for the same. Anyway, when I run the app, the following window opens:
public class MusicShopManagementView extends FrameView {
public MusicShopManagementView(SingleFrameApplication app) {
super(app);
initComponents();
// status bar...
Is OpenSwing a good framework for developing professional desktop application?
...