Some widgets have custom parsers, they're then documented in the widget's javadoc.
In the case of Tree, it has a no-arg constructor, so UiBinder will use it. If you want to use another constructor, you'll have to use a @UiFactory to construct the instance (rather than letting UiBinder construct it), or a @UiField(provided=true) to provide the instance to UiBinder (rather than letting it inject it into your @UiField). -- 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.
