use of org.ovirt.engine.ui.common.widget.editor.generic.EntityModelCheckBoxEditor in project ovirt-engine by oVirt.
the class VmDiskAttachPopupWidget method initManualWidgets.
private void initManualWidgets(boolean allowMultipleSelection) {
isPluggedEditor = new EntityModelCheckBoxEditor(Align.RIGHT);
imageDiskTable = new EntityModelCellTable<>(allowMultipleSelection);
lunDiskTable = new EntityModelCellTable<>(allowMultipleSelection);
cinderDiskTable = new EntityModelCellTable<>(allowMultipleSelection);
messageLabel = new HTML();
warningLabel = new HTML();
}
use of org.ovirt.engine.ui.common.widget.editor.generic.EntityModelCheckBoxEditor in project ovirt-engine by oVirt.
the class VmInitWidget method initCheckBoxEditors.
void initCheckBoxEditors() {
networkEnabledEditor = new EntityModelCheckBoxEditor(Align.RIGHT);
networkStartOnBootEditor = new EntityModelCheckBoxEditor(Align.RIGHT);
timeZoneEnabledEditor = new EntityModelCheckBoxEditor(Align.RIGHT);
cloudInitPasswordSetEditor = new EntityModelCheckBoxEditor(Align.RIGHT);
regenerateKeysEnabledEditor = new EntityModelCheckBoxEditor(Align.RIGHT);
windowsSyspreptimeZoneEnabledEditor = new EntityModelCheckBoxEditor(Align.RIGHT);
sysprepPasswordSetEditor = new EntityModelCheckBoxEditor(Align.RIGHT);
}
use of org.ovirt.engine.ui.common.widget.editor.generic.EntityModelCheckBoxEditor in project ovirt-engine by oVirt.
the class VmMakeTemplatePopupWidget method initCheckBoxEditors.
void initCheckBoxEditors() {
isTemplatePublicEditor = new EntityModelCheckBoxEditor(Align.RIGHT);
copyVmPermissions = new EntityModelCheckBoxEditor(Align.RIGHT);
sealTemplateEditor = new EntityModelCheckBoxEditor(Align.RIGHT);
isSubTemplateEditor = new EntityModelCheckBoxEditor(Align.RIGHT);
}
use of org.ovirt.engine.ui.common.widget.editor.generic.EntityModelCheckBoxEditor in project ovirt-engine by oVirt.
the class VmNextRunConfigurationWidget method initEditors.
void initEditors() {
applyLaterEditor = new EntityModelCheckBoxEditor(Align.RIGHT);
vmUnpinnedLatchEditor = new EntityModelCheckBoxEditor(Align.RIGHT);
}
use of org.ovirt.engine.ui.common.widget.editor.generic.EntityModelCheckBoxEditor in project ovirt-engine by oVirt.
the class VmRunOncePopupWidget method initCheckBoxEditors.
void initCheckBoxEditors() {
attachFloppyEditor = new EntityModelCheckBoxEditor(Align.RIGHT);
attachIsoEditor = new EntityModelCheckBoxEditor(Align.RIGHT);
bootMenuEnabledEditor = new EntityModelCheckBoxEditor(Align.RIGHT);
runAsStatelessEditor = new EntityModelCheckBoxEditor(Align.RIGHT);
runAndPauseEditor = new EntityModelCheckBoxEditor(Align.RIGHT);
useAlternateCredentialsEditor = new EntityModelCheckBoxEditor(Align.RIGHT);
spiceFileTransferEnabledEditor = new EntityModelCheckBoxEditor(Align.RIGHT);
spiceCopyPasteEnabledEditor = new EntityModelCheckBoxEditor(Align.RIGHT);
cloudInitEnabledEditor = new EntityModelCheckBoxEditor(Align.RIGHT);
volatileRunEditor = new EntityModelCheckBoxOnlyEditor();
volatileRunEditorWithInfo = new EntityModelWidgetWithInfo(new EnableableFormLabel(constants.volatileRunOnce()), volatileRunEditor);
volatileRunEditorWithInfo.setExplanation(templates.italicText(constants.volatileRunInfo()));
}
Aggregations