(Class[] cparams)
| 1039 | |
| 1040 | |
| 1041 | private static String[] getTypeDescriptors(Class[] cparams) { |
| 1042 | String[] sa = new String[cparams.length]; |
| 1043 | for (int i = 0; i < sa.length; i++) { |
| 1044 | sa[i] = BSHType.getTypeDescriptor(cparams[i]); |
| 1045 | } |
| 1046 | return sa; |
| 1047 | } |
| 1048 | |
| 1049 | |
| 1050 | /** |
no test coverage detected