use of org.ovirt.engine.ui.uicompat.PropertyChangedEventArgs in project ovirt-engine by oVirt.
the class HostGeneralModel method setOnlineCores.
public void setOnlineCores(String value) {
if (onlineCores == null && value == null) {
return;
}
if (onlineCores == null || !onlineCores.equals(value)) {
onlineCores = value;
// $NON-NLS-1$
onPropertyChanged(new PropertyChangedEventArgs("onlineCores"));
}
}
use of org.ovirt.engine.ui.uicompat.PropertyChangedEventArgs in project ovirt-engine by oVirt.
the class HostGeneralModel method setHasAnyAlert.
public void setHasAnyAlert(boolean value) {
if (hasAnyAlert != value) {
hasAnyAlert = value;
// $NON-NLS-1$
onPropertyChanged(new PropertyChangedEventArgs("HasAnyAlert"));
}
}
use of org.ovirt.engine.ui.uicompat.PropertyChangedEventArgs in project ovirt-engine by oVirt.
the class NetworkAttachmentModel method setBootProtocolsAvailable.
public void setBootProtocolsAvailable(boolean value) {
if (bootProtocolsAvailable != value) {
bootProtocolsAvailable = value;
updateCanSpecifyIpv4();
updateCanSpecifyIpv6();
// $NON-NLS-1$
onPropertyChanged(new PropertyChangedEventArgs("BootProtocolsAvailable"));
}
}
use of org.ovirt.engine.ui.uicompat.PropertyChangedEventArgs in project ovirt-engine by oVirt.
the class StorageDomainModel method setDisks.
public void setDisks(ArrayList<DiskImage> value) {
if (disks != value) {
disks = value;
// $NON-NLS-1$
onPropertyChanged(new PropertyChangedEventArgs("Disks"));
}
}
use of org.ovirt.engine.ui.uicompat.PropertyChangedEventArgs in project ovirt-engine by oVirt.
the class StorageGeneralModel method setTimeout.
public void setTimeout(Short timeout) {
if (!isShortsEqual(this.timeout, timeout)) {
this.timeout = timeout;
// $NON-NLS-1$
onPropertyChanged(new PropertyChangedEventArgs("Timeout"));
}
}
Aggregations