return item.getId();
}
};
DefaultCellTable<PatchInfo> table = new DefaultCellTable<PatchInfo>(PAGE_SIZE, keyProvider);
table.getElement().setId(asId(PREFIX, getClass()));
selectionModel = new SingleSelectionModel(keyProvider);
table.setSelectionModel(selectionModel);
dataProvider = new ListDataProvider<PatchInfo>();
dataProvider.addDataDisplay(table);
TextColumn<PatchInfo> idColumn = new TextColumn<PatchInfo>() {