(Class<?>[] types)
| 500 | |
| 501 | |
| 502 | private static String paramString(Class<?>[] types) { |
| 503 | if (types != null) { |
| 504 | StringBuilder sb = new StringBuilder(); |
| 505 | for (Class<?> type : types) { |
| 506 | if (type == null) { |
| 507 | sb.append("null, "); |
| 508 | } else { |
| 509 | sb.append(type.getName()).append(", "); |
| 510 | } |
| 511 | } |
| 512 | if (sb.length() > 2) { |
| 513 | sb.setLength(sb.length() - 2); |
| 514 | } |
| 515 | return sb.toString(); |
| 516 | } |
| 517 | return null; |
| 518 | } |
| 519 | |
| 520 | |
| 521 | /* |