static String classPrefixedName(CtClass<?> ctClass, CtMethod<?> method) {
   return "_" + ctClass.getSimpleName() + "_" + method.getSimpleName();
 }