package view; import controller.Controller; public class Mainwindow extends javax.swing.JFrame { Controller controller = new Controller(this); public Mainwindow() { initComponents(); } //... private void aboutButtonActionPerformed(java.awt.event.ActionEvent evt) { controller.aboutButtonActionListener(evt); } public static void main(String args[]) { //... } //.. private javax.swing.JButton aboutButton; }