Hello,
I am a
java newbie but not to programming and trying to learn and put a desktop application together. I would like to know is there a right/wrong ways to open/start a Java desktop application.
My thoughts are as follows:
Have an "application manager object" that basically handles the entire
application. This object would be created in the main function of the
class.
This object would then handle everything from there open new frames build
new objects from an init() function called from the main function.
When the init control is returned to the init functions the application
would naturally end.
Is this the correct way to handle a desktop application and will when the init() function opens a window will the function keep control until that window is closed???
TIA
-Jim