public void notifyChanged(Notification notification) {
updateChildren(notification);
switch (notification.getFeatureID(Factor.class)) {
case EMFfitModelPackage.FACTOR__PRIORITY:
fireNotifyChanged(new ViewerNotification(notification, notification.getNotifier(), false, true));
return;
case EMFfitModelPackage.FACTOR__DESCRIPTION:
case EMFfitModelPackage.FACTOR__FLEXIBILITY:
case EMFfitModelPackage.FACTOR__CHANGEABILITY:
case EMFfitModelPackage.FACTOR__INFLUENCE:
fireNotifyChanged(new ViewerNotification(notification, notification.getNotifier(), true, false));
return;
}
super.notifyChanged(notification);
}