(Class<?>[] types)
| 279 | |
| 280 | |
| 281 | private static String paramString(Class<?>[] types) { |
| 282 | if (types != null) { |
| 283 | StringBuilder sb = new StringBuilder(); |
| 284 | for (Class<?> type : types) { |
| 285 | if (type == null) { |
| 286 | sb.append("null, "); |
| 287 | } else { |
| 288 | sb.append(type.getName()).append(", "); |
| 289 | } |
| 290 | } |
| 291 | if (sb.length() > 2) { |
| 292 | sb.setLength(sb.length() - 2); |
| 293 | } |
| 294 | return sb.toString(); |
| 295 | } |
| 296 | return null; |
| 297 | } |
| 298 | |
| 299 | |
| 300 | /* |