这是这样做的正确方法吗?我正在使用 MVC 模式。
在我的 View 类中,我有一个Button.
Button fooButton = new Button();
public void addFooButtonListener(ActionListener foo){
fooButton.addActionListener(foo);
}
在我的 Controller 类构造函数中:
this.theView.addFooButtonListener(new Listener());
在控制器类中,我使用了一个名为的内部类 Listener
class Listener implements ActionListener {
public void actionPerformed(ActionEvent e){
//do whatever i want
}
}
有人告诉我,这不是正确的做法吗?这是真的?如果是,正确的方法是什么?
子衿沉夜
相关分类