gwt 中的注释

发布于 2024-11-14 17:44:15 字数 182 浏览 1 评论 0原文

可以为 GWT 客户端创建简单的注释,这使我可以在客户端使用:

@NewAnnotation

myClass myObject

而不是:

myClass myObject=new myClass( );

It is possible to create simple annotation for GWT client which give me possibility to use on client side:

@NewAnnotation

myClass myObject

instead of:

myClass myObject=new myClass();

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

明月夜 2024-11-21 17:44:15

这本质上是 UiBinder 使用的模式。实现此行为的方法是 编写一个生成器,生成粘合代码以将值分配给字段。

您可以编写如下内容:

class MyClass {
  @NewAnnotation
  SomeType field;

  interface MyFieldFiller extends FieldFiller<MyClass> {}
  MyClass() {
    GWT.create(MyFieldFiller.class).populate(this);
  }
}

您可能想查看 GIN ,它已经实现了非常强大的依赖注入机制。

This is essentially the pattern used by UiBinder. The way to implement this behavior is to write a Generator that produces the glue code to assign values to the fields.

You would be able to write something like:

class MyClass {
  @NewAnnotation
  SomeType field;

  interface MyFieldFiller extends FieldFiller<MyClass> {}
  MyClass() {
    GWT.create(MyFieldFiller.class).populate(this);
  }
}

You might want to look at GIN instead, which already implements a very robust dependency-injection mechanism.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文