updateChildren( notification );
switch ( notification.getFeatureID( Profile.class ) )
{
case PomPackage.PROFILE__ID:
fireNotifyChanged( new ViewerNotification( notification, notification.getNotifier(), false, true ) );
return;
case PomPackage.PROFILE__ACTIVATION:
case PomPackage.PROFILE__BUILD:
case PomPackage.PROFILE__REPOSITORIES:
case PomPackage.PROFILE__PLUGIN_REPOSITORIES:
case PomPackage.PROFILE__DEPENDENCIES:
case PomPackage.PROFILE__REPORTS:
case PomPackage.PROFILE__DEPENDENCY_MANAGEMENT:
case PomPackage.PROFILE__DISTRIBUTION_MANAGEMENT:
case PomPackage.PROFILE__PROPERTIES:
case PomPackage.PROFILE__MODULES:
fireNotifyChanged( new ViewerNotification( notification, notification.getNotifier(), true, false ) );
return;
}
super.notifyChanged( notification );
}