use of org.ovirt.engine.ui.common.widget.EntityModelCheckBoxWidget in project ovirt-engine by oVirt.
the class AbstractVmRemoveConfimationPopup method addItemText.
@SuppressWarnings("unchecked")
@Override
protected void addItemText(Object item) {
Entry<Guid, EntityModel<Boolean>> entry = (Entry<Guid, EntityModel<Boolean>>) item;
EntityModelCheckBoxWidget cb = new EntityModelCheckBoxWidget(Align.RIGHT, "- " + entry.getValue().getMessage(), // $NON-NLS-1$
entry.getValue().getTitle());
cb.edit(entry.getValue());
itemColumn.add(cb);
}
Aggregations