package calculator; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; public class Controller implements ActionListener { private Model model; private View view; public Controller() { super(); } public void setView(View view) { this.view = view; } public void actionPerformed(ActionEvent event) { String action = event.getActionCommand(); System.out.println(action); } }