home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / VCAFE.3.0A / Sample.bin / Hello5.java < prev    next >
Text File  |  1997-09-06  |  418b  |  25 lines

  1. /**
  2.  *  Hello5.java
  3.  *
  4.  *  class Hello5 contains a native method printHello()
  5.  *  that gets called by the main method.
  6.  */
  7.  
  8. package samples.jni1;
  9.  
  10. public class Hello5
  11. {
  12.     public native void printHello();
  13.  
  14.     static 
  15.     {
  16.         System.loadLibrary( "Hello5Impl" );
  17.     }
  18.  
  19.     public static void main( String args[] )
  20.     {
  21.         Hello5 hi = new Hello5();
  22.         hi.printHello();
  23.     }
  24. }
  25.