Lines Matching refs:method
50 public static String toString(IMethod method) { in toString() argument
52 builder.append(Modifier.toString(method.getModifiers())); in toString()
53 builder.append(method.getReturnType()); in toString()
55 if (method.getTypeParameters() != null in toString()
56 && !method.getTypeParameters().isEmpty()) { in toString()
60 .separate(method.getTypeParameters(), ", ")); in toString()
63 builder.append(method.getName()); in toString()
65 builder.append(method.getParameters().isEmpty() ? "" : ModelUtil in toString()
66 .separate(method.getParameters(), ", ")); in toString()
68 if (method.getExceptions() != null in toString()
69 && !method.getExceptions().isEmpty()) { in toString()
71 builder.append(ModelUtil.separate(method.getExceptions(), " ")); in toString()