use of org.ovirt.engine.ui.uicompat.PropertyChangedEventArgs in project ovirt-engine by oVirt.
the class ClusterModel method setMigrateOnErrorOption.
public void setMigrateOnErrorOption(MigrateOnErrorOptions value) {
if (migrateOnErrorOption != value) {
migrateOnErrorOption = value;
// webadmin use.
switch(migrateOnErrorOption) {
case NO:
getMigrateOnErrorOption_NO().setEntity(true);
getMigrateOnErrorOption_YES().setEntity(false);
getMigrateOnErrorOption_HA_ONLY().setEntity(false);
break;
case YES:
getMigrateOnErrorOption_NO().setEntity(false);
getMigrateOnErrorOption_YES().setEntity(true);
getMigrateOnErrorOption_HA_ONLY().setEntity(false);
break;
case HA_ONLY:
getMigrateOnErrorOption_NO().setEntity(false);
getMigrateOnErrorOption_YES().setEntity(false);
getMigrateOnErrorOption_HA_ONLY().setEntity(true);
break;
default:
break;
}
// $NON-NLS-1$
onPropertyChanged(new PropertyChangedEventArgs("MigrateOnErrorOption"));
}
}
use of org.ovirt.engine.ui.uicompat.PropertyChangedEventArgs in project ovirt-engine by oVirt.
the class ClusterGeneralModel method setConsoleAddressPartiallyOverridden.
public void setConsoleAddressPartiallyOverridden(Boolean consoleAddressPartiallyOverridden) {
if (isConsoleAddressPartiallyOverridden().booleanValue() != (consoleAddressPartiallyOverridden == null ? false : consoleAddressPartiallyOverridden.booleanValue())) {
this.consoleAddressPartiallyOverridden = consoleAddressPartiallyOverridden;
// $NON-NLS-1$
onPropertyChanged(new PropertyChangedEventArgs("consoleAddressPartiallyOverridden"));
}
}
use of org.ovirt.engine.ui.uicompat.PropertyChangedEventArgs in project ovirt-engine by oVirt.
the class SelectionTreeNodeModel method setChildren.
public void setChildren(ArrayList<SelectionTreeNodeModel> value) {
if ((children == null && value != null) || (children != null && !children.equals(value))) {
children = value;
// $NON-NLS-1$
onPropertyChanged(new PropertyChangedEventArgs("Children"));
}
}
use of org.ovirt.engine.ui.uicompat.PropertyChangedEventArgs in project ovirt-engine by oVirt.
the class SelectionTreeNodeModel method setTooltip.
public void setTooltip(String value) {
if (!Objects.equals(tooltip, value)) {
tooltip = value;
// $NON-NLS-1$
onPropertyChanged(new PropertyChangedEventArgs("Tooltip"));
}
}
use of org.ovirt.engine.ui.uicompat.PropertyChangedEventArgs in project ovirt-engine by oVirt.
the class SelectionTreeNodeModel method setIsSelectedNullable.
public void setIsSelectedNullable(Boolean value) {
if (isSelectedNullable == null && value == null) {
return;
}
if (isSelectedNullable == null || !isSelectedNullable.equals(value)) {
isSelectedNullable = value;
// $NON-NLS-1$
onPropertyChanged(new PropertyChangedEventArgs("IsSelectedNullable"));
if (!getIsSelectedNotificationPrevent()) {
isSelectedChanged();
}
}
}
Aggregations