use of org.ovirt.engine.ui.uicompat.PropertyChangedEventArgs in project ovirt-engine by oVirt.
the class StorageGeneralModel method setVfsType.
public void setVfsType(String vfsType) {
if (!Objects.equals(this.vfsType, vfsType)) {
this.vfsType = vfsType;
// $NON-NLS-1$
onPropertyChanged(new PropertyChangedEventArgs("VfsType"));
}
}
use of org.ovirt.engine.ui.uicompat.PropertyChangedEventArgs in project ovirt-engine by oVirt.
the class StorageGeneralModel method setPath.
public void setPath(String value) {
if (!Objects.equals(path, value)) {
path = value;
// $NON-NLS-1$
onPropertyChanged(new PropertyChangedEventArgs("Path"));
}
}
use of org.ovirt.engine.ui.uicompat.PropertyChangedEventArgs in project ovirt-engine by oVirt.
the class StorageGeneralModel method setIsLocalS.
public void setIsLocalS(boolean value) {
if (isLocalS != value) {
isLocalS = value;
// $NON-NLS-1$
onPropertyChanged(new PropertyChangedEventArgs("IsLocalS"));
}
}
use of org.ovirt.engine.ui.uicompat.PropertyChangedEventArgs in project ovirt-engine by oVirt.
the class StorageGeneralModel method setIsGlusterfs.
public void setIsGlusterfs(boolean value) {
if (isGlusterfs != value) {
isGlusterfs = value;
// $NON-NLS-1$
onPropertyChanged(new PropertyChangedEventArgs("isGlusterfs"));
}
}
use of org.ovirt.engine.ui.uicompat.PropertyChangedEventArgs in project ovirt-engine by oVirt.
the class VmBaseListModel method setDiskWindow.
public void setDiskWindow(Model value) {
if (diskModel != value) {
diskModel = value;
onPropertyChanged(new PropertyChangedEventArgs(DISK_WINDOW));
}
}
Aggregations