You can not specify type in UiBinder. What you should do is define celltable using UiBinder
and in java you declare your table using
@UiField(provided = true)
CellTable<MyType> cellTable;
public MyClass() {
cellTable = new CellTable<MyType>();
initWidget(uiBinder.createAndBindUi(this));