String desc, String signature, String[] exceptions, Method currentMethod,
String methodStaticFieldName, Type currentMethodDeclaringType,
boolean currentMethodDeclaringTypeIsInterface) {
MethodVisitor methodVisitorToReturn;
if((access & ACC_ABSTRACT) == 0) {
methodVisitorToReturn = new WovenProxyConcreteMethodAdapter(cv.visitMethod(
access, name, desc, signature, exceptions), access, name, desc,
exceptions, methodStaticFieldName, currentMethod, typeBeingWoven,
currentMethodDeclaringType);
} else {
methodVisitorToReturn = cv.visitMethod(access, name, desc, signature, exceptions);