@Override
public MethodVisitor visitMethod(int access, String name, String desc,
String signature, String[] exceptions) {
// the method itself
MethodElement m = new MethodElement(desc, name, mainClass);
JavaRelation r = null;
if ((Opcodes.ACC_STATIC & access) != 0) {
r = JavaRelation.STATIC_METHOD;
} else {