Package com.sun.jna
Interface CallbackProxy
- All Superinterfaces:
- Callback
Placeholder proxy interface to allow an InvocationHandler to convert
 arguments/return values on callback methods.  This is a special sub-interface
 of 
Callback which expects its arguments in a single Object array
 passed to its callback(java.lang.Object[]) method.- 
Nested Class SummaryNested classes/interfaces inherited from interface com.sun.jna.CallbackCallback.UncaughtExceptionHandler
- 
Field SummaryFields inherited from interface com.sun.jna.CallbackFORBIDDEN_NAMES, METHOD_NAME
- 
Method Summary
- 
Method Details- 
callbackThis is the callback method invoked from native code. It must not throw any exceptions whatsoever.
- 
getParameterTypesClass<?>[] getParameterTypes()Returns the types of the parameters to the callback method.
- 
getReturnTypeClass<?> getReturnType()Returns the type of the callback method's return value.
 
-