DevFaqMainTitle
By default, the main title shows the branding name plus the build number.
For production deployment, it could be required to only show the branding name.
There are two possible steps to achieve it:
1º.- Remove the build number.
Open this file:
...\branding\modules\org-netbeans-core-windows.jar\org\netbeans\core\windows\view\ui\Bundle.properties
in your project, and remove existing {0} tokens
- CTL_MainWindow_Title=AppBrandingName {0}
- CTL_MainWindow_Title_No_Project=AppBrandingName {0}
so it will be as:
- CTL_MainWindow_Title=AppBrandingName
- CTL_MainWindow_Title_No_Project=AppBrandingName
Build number will not show in the application main title.
2º.- Change main title at runtime.
Inside the ModuleInstaller class for the GUI module:
@Override public void restored() { // some other code may go here... WindowManager.getDefault().invokeWhenUIReady(new Runnable() { @Override public void run() { JFrame mainFrame = (JFrame) WindowManager.getDefault().getMainWindow(); mainFrame.setTitle("Modified main title"); }); } // some other code may go here... }
A word of caution related to porting existing Swing applications to NetBeans Platform. This will not work!
@Override public void restored() { // some other code may go here... SwingUtilities.invokeLater(new Runnable(){ @Override public void run() { JFrame mainFrame = (JFrame) WindowManager.getDefault().getMainWindow(); mainFrame.setTitle("Modified main title"); }); } // some other code may go here... }
Although it will not show any errors, the main title will not be set