Comment by [email protected]:
@johan.rydberg, generics support is anemic, trying only not to break
things. You can't specify generics in your ui.xml file, and you'll need to
instantiate your Table<RowType> in your owner class.
I'm pretty sure this should work (making some presumptions about your typed
Table class):
{{{
<my:Table ui:field='rowTypeTable' />
}}}
{{{
@UiField(provided = true)
final Table<RowType> rowTypeTable = new Table<RowType>() {}
}}}
For more information:
http://code.google.com/p/google-web-toolkit/wiki/UiBinder
--
http://groups.google.com/group/Google-Web-Toolkit-Contributors