C Files
Compile the Java source files. Install the class files in the appropriate directory for that package.
Run javah with argument the full class name
javah sun.awt.motif.MComboBoxPeer
This will generate a header file
sun_awt_motif_MComboBoxPeer.h
This provides a C prototype for all methods still virtual or native.
Write a C file defining all these functions
Slide 63