我已经定义了一个ClientBundle,一个Style接口,并通过@source注释将其与我的css文件连接起来。
我有两个问题:
当我在我的uibinder文件中使用<ui:with>
时,我得到以下异常:Deferred binding result type MyStyle should not be abstract.
有人可以解释发生了什么吗?我如何在我的uibinder文件中正确包含样式?
我想在很多uibinder上分享资源,而不必每次都支付初始化样式的代价。 Gwt的贫血开发指南建议使用UiField(provided=true)
或使用@uiFactory
。虽然我已成功使用@uiFactory来使用我自己的自定义小部件。我不知道如何使用@uiFactory将样式注入uiBinder。
例如:
//in pojo
@UiFactory
public MyStyle getMyStyle() {
return myStyle;
}
//in uibinder
<g:Label addStyleNames="{myStyle.defaultLable}"/>
我怎样才能完成这项工作?
提前致谢。
答案 0 :(得分:7)
我在uibinder文件中使用以下构造:
<ui:with field='res' type="com.example.client.resources.MyResource" />
其中MyResource
是包含css资源的接口:
public interface MyResource extends ClientBundle {
@Source("mycss.css")
MyCssResource css();
}
和MyCssResource
是:
public interface MyCssResource extends CssResource {
String someStyle();
}
在uibinder文件中,使用如下:
<g:TextBox addStyleNames="{res.css.someStyle}" />