GWT 中的 UIBinder 和 MVP
在 GWT 中使用此处所述的 MVP 模式时,如何创建当视图是另一个 uibinder 定义的视图的一部分时,与该视图关联的演示者。
When using the MVP pattern as described here in GWT, how do you create a presenter associated with a view when the view is part of another uibinder-defined view.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过以下方式自己实例化它:
@UiFactory
方法:<前><代码>@UiFactory
公共小部件 getMyView(){
// 在这里你实例化你的视图 &活动
...
// 你的视图包含一个小部件或者是一个小部件
返回小部件
}
@UiField(provided=true)
字段:You instantiate it yourself via:
@UiFactory
method:@UiField(provided=true)
field :