Hello,
I'm going through the UiBinder tutorial and am stuck in a particular
place. This url will take you to the section:
http://code.google.com/webtoolkit/doc/latest/DevGuideUiBinder.html#Using_an_external_resource
I've created the interface as mentioned in the tutorial but the word
Sprite is unknown and being flagged by Eclipse as "Sprite cannot be
resolved to a type":
/**
* Resources used by the entire application.
*/
public interface Resources extends ClientBundle {
@Source("Style.css")
Style style();
@Source("Logo.jpg")
ImageResource logo();
public interface Style extends CssResource {
String mainBlock();
String nameSpan();
Sprite userPictureSprite(); // <----
Problem here
}
}
Please can someone tell me what's wrong?
Thanks,
Pete
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.