Uses of Class
com.jniwrapper.FunctionExecutionException

Uses of FunctionExecutionException in com.jniwrapper
 

Subclasses of FunctionExecutionException in com.jniwrapper
 class LibraryNotFoundException
          This exception is thrown when native library cannot be loaded by JNI Wrapper.
 class MemoryAccessViolationException
          This exception is thrown when native library code attempts to reference an invalid memory location.
 class NoSuchFunctionException
          Indicates that requested native function was not found in the specified library.
 

Methods in com.jniwrapper that throw FunctionExecutionException
 void Function.invoke(Parameter returnValue, Parameter[] parameters)
          Provides access to specified function from specified DLL.
 void Function.invoke(Parameter returnValue)
          Convenience method for calling native function.
 void Function.invoke(Parameter returnValue, Parameter parameter)
          Convenience method for calling native function.
 void Function.invoke(Parameter returnValue, Parameter param1, Parameter param2)
          Convenience method for calling native function.
 void Function.invoke(Parameter returnValue, Parameter param1, Parameter param2, Parameter param3)
          Convenience method for calling native function.
 void Function.invoke(Parameter returnValue, Parameter param1, Parameter param2, Parameter param3, Parameter param4)
          Convenience method for calling native function.
static void Function.call(java.lang.String libraryName, java.lang.String functionName, Parameter returnValue, Parameter[] parameters)
          This method provides access to specified function from specified DLL.
static void Function.call(java.lang.String libraryName, java.lang.String functionName, Parameter returnValue)
          Redirects a call to method call taking array of parameters.
static void Function.call(java.lang.String libraryName, java.lang.String functionName, Parameter returnValue, Parameter parameter)
          Redirects a call to method call taking array of parameters.
static void Function.call(java.lang.String libraryName, java.lang.String functionName, Parameter returnValue, Parameter param1, Parameter param2)
          Redirects a call to method call taking array of parameters.
static void Function.call(java.lang.String libraryName, java.lang.String functionName, Parameter returnValue, Parameter param1, Parameter param2, Parameter param3)
          Redirects a call to method call taking array of parameters.
static void Function.call(java.lang.String libraryName, java.lang.String functionName, Parameter returnValue, Parameter param1, Parameter param2, Parameter param3, Parameter param4)
          Redirects a call to method call taking array of parameters.