package controller; import java.awt.event.ActionEvent; import javax.swing.JFrame; import javax.swing.JOptionPane; import model.Model; public class Controller { Model model = new Model(); Mainwindow jframe; public Controller(Mainwindow jframe) { this.jframe = jframe; } public void aboutButtonActionListener(ActionEvent ev ) { JOptionPane.showMessageDialog(jframe, "Működik"); } }