GWT Classes
Style extends CSSRource{
..../* List of methods */
}
GwtBundle extends ClientBundle{
@Source("someStyleSheet.css")
Style getStyle();
}
All you need to do now is extend GwtBundle and override the method that
creates the style and point it at your new StyleSheet.
MyBundle extends GwtBundle{
@Source("myCustomeStyleSheet")
Style getStyle();
}
Don't forget to do MyBundle.getStyle().ensureInjected();
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/google-web-toolkit/-/TbzJAaym3lEJ.
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.