use of org.ovirt.engine.ui.uicommonweb.models.vms.RemoveVnicProfileModel in project ovirt-engine by oVirt.
the class NetworkProfileListModel method remove.
public void remove() {
if (getWindow() != null) {
return;
}
RemoveVnicProfileModel model = new RemoveVnicProfileModel(this, getSelectedItems(), false);
setWindow(model);
}
use of org.ovirt.engine.ui.uicommonweb.models.vms.RemoveVnicProfileModel in project ovirt-engine by oVirt.
the class VnicProfileListModel method remove.
public void remove() {
if (getConfirmWindow() != null) {
return;
}
ConfirmationModel model = new RemoveVnicProfileModel(this, getSelectedItems(), true);
setConfirmWindow(model);
}
Aggregations