Hi Alexandre, Thanks for your response.
I have a one question. Suppose If i implement Client Bundle interface in my project. is GWT automatically create a single image sprite from 200+ static images? it would be a great if you provide a sample demo example on Image sprite . Thanks. On Sep 15, 7:04 pm, Alexandre Dupriez <[email protected]> wrote: > You can use the ClientBundle interface.Createan interface which > extends ClientBundle and declare youimageresources in it. Here is a > piece of code: > > public interface AppResources extends ClientBundle { > > @Source("image/frame.gif") > ImageResource frame(); > > } > > Note that the path you provide in the @Source annotation is relative > to the AppResources interface. > > Alexandre. -- 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.
