use of org.ovirt.engine.ui.uicompat.PropertyChangedEventArgs in project ovirt-engine by oVirt.
the class LunModel method setSize.
public void setSize(int value) {
if (size != value) {
size = value;
// $NON-NLS-1$
onPropertyChanged(new PropertyChangedEventArgs("Size"));
}
}
use of org.ovirt.engine.ui.uicompat.PropertyChangedEventArgs in project ovirt-engine by oVirt.
the class LunModel method setMultipathing.
public void setMultipathing(int value) {
if (multipathing != value) {
multipathing = value;
// $NON-NLS-1$
onPropertyChanged(new PropertyChangedEventArgs("Multipathing"));
}
}
use of org.ovirt.engine.ui.uicompat.PropertyChangedEventArgs in project ovirt-engine by oVirt.
the class LunModel method setIsAccessible.
public void setIsAccessible(boolean value) {
if (isAccessible != value) {
isAccessible = value;
// $NON-NLS-1$
onPropertyChanged(new PropertyChangedEventArgs("IsAccessible"));
}
}
use of org.ovirt.engine.ui.uicompat.PropertyChangedEventArgs in project ovirt-engine by oVirt.
the class LunModel method setIsGrayedOut.
public void setIsGrayedOut(boolean value) {
if (isGrayedOut != value) {
isGrayedOut = value;
// $NON-NLS-1$
onPropertyChanged(new PropertyChangedEventArgs("IsGrayedOut"));
}
}
use of org.ovirt.engine.ui.uicompat.PropertyChangedEventArgs in project ovirt-engine by oVirt.
the class MoveOrCopyDiskModel method setAllDisks.
public void setAllDisks(ArrayList<DiskModel> value) {
if (allDisks != value) {
allDisks = value;
// $NON-NLS-1$
onPropertyChanged(new PropertyChangedEventArgs("All Disks"));
}
}
Aggregations