( Object[] args, Class [] paramTypes )
| 879 | /* |
| 880 | */ |
| 881 | public static Object [] wrap( Object[] args, Class [] paramTypes ) |
| 882 | { |
| 883 | if ( args == null ) |
| 884 | return null; |
| 885 | |
| 886 | Object [] oa = new Object[ args.length ]; |
| 887 | for(int i=0; i<args.length; i++) |
| 888 | oa[i] = wrap( args[i], paramTypes[i] ); |
| 889 | return oa; |
| 890 | } |
| 891 | |
| 892 | /** |
| 893 | Wrap primitive values (as indicated by type param) and nulls in the |
no test coverage detected