Uses of Class
com.jniwrapper.LibraryNotFoundException

Packages that use LibraryNotFoundException
com.jniwrapper The com.jniwrapper package contains classes that allow calling native functions from Java(TM) code. 
 

Uses of LibraryNotFoundException in com.jniwrapper
 

Subclasses of LibraryNotFoundException in com.jniwrapper
 class LibraryVersionMismatchException
          This exception is thrown when there is a native library but it is not compatible with
the current JNIWrapper version.
 

Methods in com.jniwrapper that throw LibraryNotFoundException
 Function Library.getFunction(java.lang.String name)
          A convenience method for getting a function when parameter types do affect loaded function.
 Function Library.getFunction(java.lang.String name, java.lang.Class[] paramTypes)
          This returns a Function object that reflects the exported native function from the library.
 void Library.load()
          Loads a library by its name using default mechanism.
 void Library.load(java.io.File directory)
          Loads a library from the passed directory.
 void Library.load(LibraryLoader loader)
          Loads a library using a given library loader.