}
@Override
public void setPropertyData(String name, Object value) throws MException {
if (model != null) {
PojoAttribute attr = model.getAttribute(name);
if (attr == null) throw new MException("attribute not found",name);
try {
attr.set(pojo,value);
} catch (IOException e) {
throw new MException(name,e);
}
}
}