switch ( notification.getFeatureID( Resource.class ) )
{
case PomPackage.RESOURCE__TARGET_PATH:
case PomPackage.RESOURCE__FILTERING:
case PomPackage.RESOURCE__DIRECTORY:
fireNotifyChanged( new ViewerNotification( notification, notification.getNotifier(), false, true ) );
return;
case PomPackage.RESOURCE__INCLUDES:
case PomPackage.RESOURCE__EXCLUDES:
fireNotifyChanged( new ViewerNotification( notification, notification.getNotifier(), true, false ) );
return;
}
super.notifyChanged( notification );
}