public void onRowClicked(SourcesTableEvents sender, Row row) {
GWT.log("Row clicked (id " + row.getId() + ")", null);
for(int i = 0; i < rows.length; ++i) rows[i].setState(Row.State.NONE);
row.setState(Row.State.SELECT);
table.refreshRowState();
}
public void onClick(SourcesTableEvents sender, Row row, Column column, Widget widget) {
GWT.log("Renderer widget clicked", null);
if(widget instanceof CheckBox) {