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