gwt 中的注释
可以为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这本质上是 UiBinder 使用的模式。实现此行为的方法是 编写一个生成器,生成粘合代码以将值分配给字段。
您可以编写如下内容:
您可能想查看 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:
You might want to look at GIN instead, which already implements a very robust dependency-injection mechanism.