given we have a client bundle:
public interface MyResource extends ClientBundle {}
in our widget:
public class MyWidget extends Composite {
MyResource resource = GWT.create(MyResource.class);
// resource.myresource
how can we inject ClientBundle, so that we can do away with GWT.create
for example:
private final MyResource resource;
@Inject
public MyWidget(MyResource resource){
this.resource = resource;
}
when I try this, I get exceptions.
do I need to declare any bindings in gin module config ?
--
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.