(Object ... arguments)
| 67 | private static native Object make(avian.VMClass c); |
| 68 | |
| 69 | public T newInstance(Object ... arguments) |
| 70 | throws InvocationTargetException, InstantiationException, |
| 71 | IllegalAccessException |
| 72 | { |
| 73 | T v = (T) make(method.getDeclaringClass().vmClass); |
| 74 | method.invoke(v, arguments); |
| 75 | return v; |
| 76 | } |
| 77 | |
| 78 | public Class<?>[] getExceptionTypes() { |
| 79 | throw new UnsupportedOperationException("not yet implemented"); |
nothing calls this directly
no test coverage detected