/**
* {@inheritDoc}
*/
public void setProperty(String propertyDisplayName, String value) {
PropertyModel property = properties.get(propertyDisplayName);
if (property == null) {
throw new RuntimeException("No properties of node type '" + type
+ "' has the display name '" + propertyDisplayName + "'");
}
property.setValue(value);
}