@Override
public void setValue(Object bean, QName name, Object value)
throws ConfigException
{
try {
AnnotationConfig ann = (AnnotationConfig) bean;
ann.setAttribute(name.getLocalName(), value);
//_putMethod.invoke(bean, name.getLocalName(), value);
} catch (Exception e) {
throw ConfigException.create(e);
}
}