Currently working with GWT and have an Image Resource object in use. For instance,
ImageResource image = ClientResources.of().images().icon();
Looking to add some CSS styles to this image, however being that it's an ImageResource and not an Image object, I am unable to utilize image.addStyleName(). Not utilizing ui-binder either. Any suggestions on how to achieve this?
Being a newcomer to GWT, providing code examples in your response would be greatly appreciated for better clarity.
Thanks in advance.