Home | History | Annotate | Download | only in mocking

Lines Matching defs:methodBody

174     StringBuilder methodBody = getMethodSignature(method);
175 methodBody.append(";");
176 return methodBody.toString();
426 StringBuilder methodBody = getMethodSignature(method);
427 methodBody.append("{");
428 methodBody.append("if(this.");
429 methodBody.append(getDelegateFieldName());
430 methodBody.append("==null){return ");
431 methodBody.append(getReturnDefault(method));
432 methodBody.append(";}");
434 methodBody.append("return ");
436 methodBody.append("this.");
437 methodBody.append(getDelegateFieldName());
438 methodBody.append(".");
439 methodBody.append(method.getName());
440 methodBody.append("(");
442 methodBody.append("arg");
443 methodBody.append(i);
445 methodBody.append(",");
448 methodBody.append(");}");
449 return methodBody.toString();