Searched refs:ctMethod (Results 1 – 1 of 1) sorted by relevance
246 for (CtMethod ctMethod : ctClass.getDeclaredMethods()) { in fixMethods()247 fixMethod(ctClass, ctMethod, true); in fixMethods()258 private String describe(CtMethod ctMethod) throws NotFoundException { in describe() argument259 …return Modifier.toString(ctMethod.getModifiers()) + " " + ctMethod.getReturnType().getSimpleName()… in describe()262 …private void fixMethod(CtClass ctClass, CtMethod ctMethod, boolean wasFoundInClass) throws NotFoun… in fixMethod() argument263 String describeBefore = describe(ctMethod); in fixMethod()265 CtClass declaringClass = ctMethod.getDeclaringClass(); in fixMethod()266 int originalModifiers = ctMethod.getModifiers(); in fixMethod()285 ctMethod.setModifiers(newModifiers); in fixMethod()288 CtClass returnCtClass = ctMethod.getReturnType(); in fixMethod()[all …]