Netbeans Java SE GUI Builder: private initComponents() problem
- by maSnun
When I build a GUI for my Java SE app with Netbeans GUI builder, it puts all the codes in the initComponents() method which is private. I could not change it to public. So, all the components are accessible only to the class containing the UI.
I want to access those components from another class so that I can write custom event handlers and…