throw new BindingException("No Object matching " + propertyName + "=" + stringValue);
}
private IBindable getBindableAtMapKey(Map<String, IBindable> map, String key) {
IBindable result = null;
for(final Iterator<Entry<String, IBindable>> it = map.entrySet().iterator(); it.hasNext();) {
final Entry<String, IBindable> e = it.next();
if(e.getKey().toString().equals(key)) {
result = e.getValue();