if (annotation == null) {
return;
}
if (!JavaIntrospectionHelper.isSetter(method)) {
throw new IllegalPropertyException("Annotated method is not a setter: " + method, method);
}
String name = annotation.name();
if (name == null || "".equals(name)) {
name = method.getName();