use of org.ovirt.engine.ui.uicompat.PropertyChangedEventArgs in project ovirt-engine by oVirt.
the class SanStorageModelBase method setGetLUNsFailure.
public void setGetLUNsFailure(String value) {
if (!Objects.equals(getLUNsFailure, value)) {
getLUNsFailure = value;
// $NON-NLS-1$
onPropertyChanged(new PropertyChangedEventArgs("GetLUNsFailure"));
}
}
use of org.ovirt.engine.ui.uicompat.PropertyChangedEventArgs in project ovirt-engine by oVirt.
the class SanStorageModelBase method setSelectedLunWarning.
public void setSelectedLunWarning(String value) {
if (!Objects.equals(selectedLunWarning, value)) {
selectedLunWarning = value;
// $NON-NLS-1$
onPropertyChanged(new PropertyChangedEventArgs("SelectedLunWarning"));
}
}
use of org.ovirt.engine.ui.uicompat.PropertyChangedEventArgs in project ovirt-engine by oVirt.
the class SanStorageModelBase method setIgnoreGrayedOut.
public void setIgnoreGrayedOut(boolean value) {
if (ignoreGrayedOut != value) {
ignoreGrayedOut = value;
// $NON-NLS-1$
onPropertyChanged(new PropertyChangedEventArgs("IgnoreGrayedOut"));
}
}
use of org.ovirt.engine.ui.uicompat.PropertyChangedEventArgs in project ovirt-engine by oVirt.
the class SanTargetModel method setAddress.
public void setAddress(String value) {
if (!Objects.equals(address, value)) {
address = value;
// $NON-NLS-1$
onPropertyChanged(new PropertyChangedEventArgs("Address"));
}
}
use of org.ovirt.engine.ui.uicompat.PropertyChangedEventArgs in project ovirt-engine by oVirt.
the class SanTargetModel method setPortal.
public void setPortal(String value) {
if (!Objects.equals(portal, value)) {
portal = value;
// $NON-NLS-1$
onPropertyChanged(new PropertyChangedEventArgs("Portal"));
}
}
Aggregations