最初我有按鈕的視圖保存命令,這些按鈕計算出來並在推入後將文本輸出到JTextAreas上。生成的內容取決於返回的值。MVC體系結構實現
我擔心我不遵循標準的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架構?
感謝,
吉姆
設置您的視圖數據,如果你想讓它反映的模型,然後*您可以通過模型數據* ,然後*然後*使用控制器設置視圖數據。 – Jimbo