最初我有按钮的视图保持命令,这些按钮计算这个并在被按下后将文本输出到 JTextAreas 上。产生什么取决于返回的值。
我担心我没有通过在控制器中设置如下文本来遵循标准的 MVC 架构。
目前我将按钮命令更改为我的控制器
private class ReadActionListener implements ActionListener {
public void actionPerformed(ActionEvent l) {
/* there is other code in here, which results in setting text its not
just a set text button*/
/*interactions with model etc etc, outcome true? setText JTextArea like below*/
view.variable.setText("hi there");
}
}
我应该为控制器内的视图设置文本还是打破标准的 MVC 架构?
谢谢,
吉姆