将对象传递给uibinder中定义的窗口小部件的构造函数

时间:2010-10-15 21:20:43

标签: gwt uibinder

我正在尝试将我的应用程序的EventBus传递给通过其构造函数在UiBinder中声明的小部件。我正在使用@UiConstructor注释标记一个接受EventBus的构造函数,但我不知道如何从我的ui.xml代码中实际引用该对象。

也就是说,我需要像

这样的东西

WidgetThatNeedsAnEventBus.java

public class WidgetThatNeedsAnEventBus extends Composite
{
    private EventBus eventBus;

    @UiConstructor
    public WidgetThatNeedsAnEventBus(EventBus eventBus)
    {
        this.eventBus = eventBus;
    }
}

TheUiBinderThatWillDeclareAWTNAEB.ui.xml

<g:HTMLPanel>
    <c:WidgetThatNeedsAnEventBus eventBus=_I_need_some_way_to_specify_my_apps_event_bus_ />
</g:HTMLPanel>

将静态值传递给WidgetThatNeedsAnEventBus没有问题,我可以使用工厂方法创建一个新的EventBus对象。但我需要的是通过我的应用程序已经存在的EventBus。

有没有办法在UiBinder中引用已存在的对象?

2 个答案:

答案 0 :(得分:8)

我最终的解决方案是在我需要用变量初始化的小部件上使用@UiField(provided=true)

然后,我在Java上调用initWidget之前,用Java自己构建了小部件。

例如:

public class ParentWidget extends Composite
{
    @UiField(provided=true)
    protected ChildWidget child;

    public ParentWidget(Object theObjectIWantToPass)
    {
        child = new ChildWidget(theObjectIWantToPass);  //_before_ initWidget
        initWidget(uiBinder.create(this));

        //proceed with normal initialization!
    }
}

答案 1 :(得分:2)

我建议你使用工厂方法(描述here)。这样您就可以将实例传递给窗口小部件。

使用<ui:with>元素,您还可以将对象传递给窗口小部件(如果存在setter方法)(如文档here所示)。但是该对象将通过GWT.create实例化,我认为这不是您打算使用eventBus