Thanks Thomas!.
http://gwt-code-reviews.appspot.com/1466809/diff/1/user/src/com/google/gwt/uibinder/client/UiRenderer.java File user/src/com/google/gwt/uibinder/client/UiRenderer.java (right): http://gwt-code-reviews.appspot.com/1466809/diff/1/user/src/com/google/gwt/uibinder/client/UiRenderer.java#newcode32 user/src/com/google/gwt/uibinder/client/UiRenderer.java:32: * @param cell {@link com.google.gwt.cell.client.Cell Cell} that will receive the event On 2011/07/01 10:18:30, tbroyer wrote:
Why isn't T declared as "T extends Cell<?>" then?
In the end we figured it would be good to let people render for purposes other than Cell widgets. The documentation (mistakenly) still gives the impression that this is exclusively Cell related, though. http://gwt-code-reviews.appspot.com/1466809/diff/1/user/src/com/google/gwt/uibinder/rebind/UiBinderWriter.java File user/src/com/google/gwt/uibinder/rebind/UiBinderWriter.java (right): http://gwt-code-reviews.appspot.com/1466809/diff/1/user/src/com/google/gwt/uibinder/rebind/UiBinderWriter.java#newcode1229 user/src/com/google/gwt/uibinder/rebind/UiBinderWriter.java:1229: return firstLetter.toLowerCase() + name.substring(4); On 2011/07/01 10:18:30, tbroyer wrote:
Beware of the turkish locale!
You should use Introspector.decapitalize here
http://download.oracle.com/javase/6/docs/api/java/beans/Introspector.html#decapitalize%28java.lang.String)
Or use Character.toLowerCase rather than String.toLowerCase.
Thanks! I was not aware of this. http://gwt-code-reviews.appspot.com/1466809/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors