Google

SWIG/Examples/java/native/

SWIG wrapped and manually wrapped functions in Java

$Header: /cvs/projects/SWIG/Examples/java/native/Attic/index.html,v 1.1.2.2 2001/06/08 11:20:51 cheetah Exp $

This example compares wrapping a c global function using the manual way and the SWIG way.

  • example.i. Interface file comparing code wrapped by SWIG and wrapped manually.
  • main.java. Sample Java program showing calls to both manually wrapped and SWIG wrapped c functions.

Notes

  • SWIG writes all the awkward JNI code for you. You just have to tell SWIG which functions to wrap.
  • If memory is allocated in c it needs to be free'd. A function, such as free(), can be provided with access from Java to free the memory.