| applicationpackage.ShellApp
ShellApp | public class ShellApp extends SingleFrameApplication (Code) | | The main class of the application.
|
Method Summary | |
protected void | configureWindow(java.awt.Window root) This method is to initialize the specified window by injecting resources. | public static ShellApp | getApplication() A convenient static getter for the application instance. | public static void | main(String[] args) Main method launching the application. | protected void | startup() At startup create and show the main frame of the application. |
configureWindow | protected void configureWindow(java.awt.Window root)(Code) | | This method is to initialize the specified window by injecting resources.
Windows shown in our application come fully initialized from the GUI
builder, so this additional configuration is not needed.
|
getApplication | public static ShellApp getApplication()(Code) | | A convenient static getter for the application instance.
the instance of ShellApp |
main | public static void main(String[] args)(Code) | | Main method launching the application.
|
startup | protected void startup()(Code) | | At startup create and show the main frame of the application.
|
|
|