use of org.ovirt.engine.ui.uicompat.PropertyChangedEventArgs in project ovirt-engine by oVirt.
the class DisksAllocationModel method setQuotaEnforcementType.
public void setQuotaEnforcementType(QuotaEnforcementTypeEnum value) {
this.quotaEnforcementType = value;
// $NON-NLS-1$
onPropertyChanged(new PropertyChangedEventArgs("QuotaEnforcmentType"));
}
use of org.ovirt.engine.ui.uicompat.PropertyChangedEventArgs in project ovirt-engine by oVirt.
the class DisksAllocationModel method setIsVolumeFormatChangeable.
public void setIsVolumeFormatChangeable(boolean isVolumeFormatChangeable) {
if (this.isVolumeFormatChangeable != isVolumeFormatChangeable) {
this.isVolumeFormatChangeable = isVolumeFormatChangeable;
onPropertyChanged(new PropertyChangedEventArgs(VOLUME_FORMAT));
}
}
use of org.ovirt.engine.ui.uicompat.PropertyChangedEventArgs in project ovirt-engine by oVirt.
the class DisksAllocationModel method setIsThinProvisioning.
public void setIsThinProvisioning(boolean isThinProvisioning) {
if (this.isThinProvisioning != isThinProvisioning) {
this.isThinProvisioning = isThinProvisioning;
onPropertyChanged(new PropertyChangedEventArgs(THIN_PROVISIONING));
}
}
use of org.ovirt.engine.ui.uicompat.PropertyChangedEventArgs in project ovirt-engine by oVirt.
the class DisksAllocationModel method setIsVolumeTypeChangable.
public void setIsVolumeTypeChangable(boolean isVolumeTypeChangable) {
if (this.isVolumeTypeChangable != isVolumeTypeChangable) {
this.isVolumeTypeChangable = isVolumeTypeChangable;
onPropertyChanged(new PropertyChangedEventArgs(VOLUME_TYPE));
}
}
use of org.ovirt.engine.ui.uicompat.PropertyChangedEventArgs in project ovirt-engine by oVirt.
the class LunModel method setIsIncluded.
public void setIsIncluded(boolean value) {
if (isIncluded != value) {
isIncluded = value;
// $NON-NLS-1$
onPropertyChanged(new PropertyChangedEventArgs("IsIncluded"));
}
}
Aggregations