GWT 中的 UIBinder 和 MVP

发布于 2024-11-14 23:24:38 字数 167 浏览 2 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

但可醉心 2024-11-21 23:24:38

您可以通过以下方式自己实例化它:

  1. @UiFactory 方法:

    <前><代码>@UiFactory
    公共小部件 getMyView(){

    // 在这里你实例化你的视图 &活动
    ...

    // 你的视图包含一个小部件或者是一个小部件
    返回小部件
    }

  2. @UiField(provided=true) 字段:

    @UiField(提供=true)
    公共小部件 myView;
    
    // 然后在构造函数中实例化它
    

You instantiate it yourself via:

  1. @UiFactory method:

    @UiFactory
    public Widget getMyView(){
    
        // here you instantiate your view & activity
        ...
    
        // your view contais a widget or is a widget
        return widget
    }
    
  2. @UiField(provided=true) field :

    @UiField(provided=true)
    public Widget myView;
    
    // then instantiate it in constructor
    
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文