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 a native library cannot be loaded.
 class MemoryAccessViolationException
          This exception is thrown when a 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)
          Invokes the function with the passed parameters.
 void Function.invoke(Parameter returnValue)
          Convenience method for calling a native function without parameters.
 void Function.invoke(Parameter returnValue, Parameter parameter)
          Convenience method for calling a native function with a single parameter.
 void Function.invoke(Parameter returnValue, Parameter param1, Parameter param2)
          Convenience method for calling native function with two parameters.
 void Function.invoke(Parameter returnValue, Parameter param1, Parameter param2, Parameter param3)
          Convenience method for calling a native function with three parameters.
 void Function.invoke(Parameter returnValue, Parameter param1, Parameter param2, Parameter param3, Parameter param4)
          Convenience method for calling native function with four parameters.
static void Function.call(java.lang.String libraryName, java.lang.String functionName, Parameter returnValue, Parameter[] parameters)
          Invokes the specified function from specified native library.
static void Function.call(java.lang.String libraryName, java.lang.String functionName, Parameter returnValue)
          Convenience method that invokes a native code function, which has no parameters.
static void Function.call(java.lang.String libraryName, java.lang.String functionName, Parameter returnValue, Parameter parameter)
          Convenience method that invokes a native code function with single parameter.
static void Function.call(java.lang.String libraryName, java.lang.String functionName, Parameter returnValue, Parameter param1, Parameter param2)
          Convenience method that invokes a native code function, which has two parameters.
static void Function.call(java.lang.String libraryName, java.lang.String functionName, Parameter returnValue, Parameter param1, Parameter param2, Parameter param3)
          Convenience method that invokes a native function with three parameters.
static void Function.call(java.lang.String libraryName, java.lang.String functionName, Parameter returnValue, Parameter param1, Parameter param2, Parameter param3, Parameter param4)
          Convenience method that invokes a native function with four parameters.