*/
@Override
public Collection<InsteadGetHandler> createHandlers(CalculatedAttr annotation, final Method method,
final Object customizer) {
final String attrName = getAttributeName(method);
InsteadGetHandler handler = new InsteadGetHandler() {
@Override
public Object doInsteadGet(XMLDCElement element) {
final Object retval = AdopterUtil.invokeMethod(customizer, method, element);
return retval;
}