带有参数化构造函数的 UiBinder 自定义小部件

发布于 2024-11-25 08:35:57 字数 352 浏览 1 评论 0原文

假设我们有一个使用 UiBinder 声明的自定义小部件,并且它的构造函数中需要有一些参数。当我在 ui.xml 中声明它时,如何才能提供这些参数?

那是我有一个

CustomWidget(int param1, int param2)

,当我将它添加到 ui.xml 时,我需要能够执行以下操作:

...

xmlns:my="urn:import:...">

<g:Container>
 <my:CustomWidget param1="1" param2="arg2"/>
</g:Container>

Let's say we have a custom widget that was declared using UiBinder and it needs to have some arguments in its constructor. How can I make it in order to be able to supply these arguments when i declare it in ui.xml?

That is i have a

CustomWidget(int param1, int param2)

and when i add it to a ui.xml i need to be able to do:

...

xmlns:my="urn:import:...">

<g:Container>
 <my:CustomWidget param1="1" param2="arg2"/>
</g:Container>

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

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

发布评论

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

评论(1

安人多梦 2024-12-02 08:35:57

在构造函数上使用 @UiConstructor

@UiConstructor
CustomWidget(int param1, int param2)

查看文档:http://code.google.com/webtoolkit/doc/latest/DevGuideUiBinder.html#Using_a_widget

Use @UiConstructor on your constructor:

@UiConstructor
CustomWidget(int param1, int param2)

Look at docs: http://code.google.com/webtoolkit/doc/latest/DevGuideUiBinder.html#Using_a_widget

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