如何为在GWT中使用ClientBundle访问的图像设置元素ID?

时间:2012-08-09 08:37:46

标签: gwt gwt2 clientbundle

在GWT中,我需要为将使用ClientBundle访问的图像设置元素id。

例如。 @Source("logo.png")

     ImageResource logo();

而不是Image我正在调用此徽标()。但是我想为logo.png设置元素ID。

有可能吗?

1 个答案:

答案 0 :(得分:3)

Resources resources = GWT.create(Resources.class);
Image img = new Image(resources.logo());
img.getElement().setID("ID");

这是你想要的吗?