}
public void notifyStrategySelectedChanged(ErrorStrategyItemType esType, String value) {
IErrorStrategyItem esItem = findErrorStrategyItem(esType);
if (esItem != null) {
ErrorStrategyType oldType = esItem.getStrategy();
ErrorStrategyType newType = ErrorStrategyType.valueOf(ErrorStrategyType.class, value);
if (oldType != newType) {
esItem.setStrategy(newType);
if (config != null) {
config.setModified(true);
}