(Class<?> argClass)
| 635 | } |
| 636 | |
| 637 | private boolean isPrimitiveArray(Class<?> argClass) { |
| 638 | return argClass.isArray() |
| 639 | && argClass.getComponentType().isPrimitive(); |
| 640 | } |
| 641 | |
| 642 | /** |
| 643 | * Call the native function being represented by this object |
no test coverage detected