This will work as long as the class into which you're injecting the ClientBundle is itself instantiated via GIN. For more info, see http://turbomanage.wordpress.com/2009/10/02/gwt-easy-i18n-with-gin/
HTH, /dmc On Thu, Jan 13, 2011 at 9:54 PM, zixzigma <[email protected]> wrote: > > 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]<google-web-toolkit%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/google-web-toolkit?hl=en. > > -- David Chandler Developer Programs Engineer, Google Web Toolkit w: http://code.google.com/ b: http://googlewebtoolkit.blogspot.com/ t: @googledevtools -- 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.
