use of org.ovirt.engine.ui.uicompat.PropertyChangedEventArgs in project ovirt-engine by oVirt.
the class HostGeneralModel method setMemoryPageSharing.
public void setMemoryPageSharing(Boolean value) {
if (memoryPageSharing == null && value == null) {
return;
}
if (memoryPageSharing == null || !memoryPageSharing.equals(value)) {
memoryPageSharing = value;
// $NON-NLS-1$
onPropertyChanged(new PropertyChangedEventArgs("MemoryPageSharing"));
}
}
use of org.ovirt.engine.ui.uicompat.PropertyChangedEventArgs in project ovirt-engine by oVirt.
the class HostGeneralModel method setHasReinstallAlertInstallFailed.
public void setHasReinstallAlertInstallFailed(boolean value) {
if (hasReinstallAlertInstallFailed != value) {
hasReinstallAlertInstallFailed = value;
// $NON-NLS-1$
onPropertyChanged(new PropertyChangedEventArgs("HasReinstallAlertInstallFailed"));
}
}
use of org.ovirt.engine.ui.uicompat.PropertyChangedEventArgs in project ovirt-engine by oVirt.
the class HostHardwareGeneralModel method setCoresPerSocket.
public void setCoresPerSocket(String value) {
if (coresPerSocket == null && value == null) {
return;
}
if (coresPerSocket == null || !coresPerSocket.equals(value)) {
coresPerSocket = value;
// $NON-NLS-1$
onPropertyChanged(new PropertyChangedEventArgs("CoresPerSocket"));
}
}
use of org.ovirt.engine.ui.uicompat.PropertyChangedEventArgs in project ovirt-engine by oVirt.
the class HostHardwareGeneralModel method setHardwareVersion.
public void setHardwareVersion(String value) {
if (!Objects.equals(hardwareVersion, value)) {
hardwareVersion = value;
// $NON-NLS-1$
onPropertyChanged(new PropertyChangedEventArgs("hardwareVersion"));
}
}
use of org.ovirt.engine.ui.uicompat.PropertyChangedEventArgs in project ovirt-engine by oVirt.
the class HostHardwareGeneralModel method setCpuType.
public void setCpuType(String value) {
if (!Objects.equals(cpuType, value)) {
cpuType = value;
// $NON-NLS-1$
onPropertyChanged(new PropertyChangedEventArgs("CpuType"));
}
}
Aggregations