typeResourceCell.appendChild(typeLabel);
item.appendChild(typeResourceCell);
}
private void appendLimiting(final Listitem item) {
final Resource resource = (Resource) item.getValue();
final Checkbox limitingCheckbox = new Checkbox();
limitingCheckbox.setChecked(resource.isLimitingResource());
limitingCheckbox.setDisabled(true);
Listcell limitingResourceCell = new Listcell();
limitingResourceCell.appendChild(limitingCheckbox);
item.appendChild(limitingResourceCell);