for (final Object propertyId : item.getItemPropertyIds()) {
final Property property = item.getItemProperty(propertyId);
if (property instanceof ValueChangeNotifier) {
final ValueChangeNotifier notifier = (ValueChangeNotifier) property;
notifier.addValueChangeListener(this);
propertyItemMapCache.put(property, item);
}
}
}