Technologies: NetBeans 6.9.1, SwingX 1.6.2
I have a JFrame with many JXPanels (with many other components on them). initComponents() method is guarded by NetBeans (for GUI sync reasons, I guess).
I'd like to move all of JXPanels to new .java files (due to size of initComponents() method - code too large error) and still be able to edit them in visual editor. How can I do that? Is there any possibility to achieve it without 3rd part tools like Notepad (quite unsafe)?
Any other ideas how can I split initComponents() easily and safely to avoid code too large error?