控制器如何划分?
我的视图控制器
public class MainForm implements java.util.Observer{
@Override
public void update(Observable o, Object arg) {
System.err.println("update View ....");
this.textField_15.setText(String.valueOf(model.getThermalConductivity()));
/*
*****
*/
}
}
在模型中我使用方法
setChanged();
notifyObservers();
所有事件模型更新都在方法“update”中处理
如何划分控制器?
My View-Controller
public class MainForm implements java.util.Observer{
@Override
public void update(Observable o, Object arg) {
System.err.println("update View ....");
this.textField_15.setText(String.valueOf(model.getThermalConductivity()));
/*
*****
*/
}
}
In the model I use methods
setChanged();
notifyObservers();
All events model updates are processed in the method "update"
How to divide the controller?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能会喜欢尝试这个示例。为简单起见,该模型扩展了 Observable,但还提到了其他几种方法并附有示例链接。
You might enjoy trying this example. For simplicity, the model extends
Observable
, but several other approaches are mentioned with links to examples.