import com.pre.entity.base.Division;
public class DivisionRowRenderer implements RowRenderer{
public void render(Row row, Object data) throws Exception {
Division c=(Division)data;
row.appendChild(new Checkbox());
row.appendChild(new Label(c.getId().toString()));
row.appendChild(new Label(c.getCode()));
row.appendChild(new Label(c.getDescription().getShortDescription()));
}