source: trunk/lang/java/Utils.java @ 1723

Last change on this file since 1723 was 1722, checked in by braffert, 14 years ago

Added java bindings

File size: 267 bytes
Line 
1package rappture;
2
3public class Utils{
4  static{
5    System.loadLibrary("jRappture");
6  }
7
8  public static void progress(int percent, String text){
9    jRpUtilsProgress(percent, text);
10  }
11
12  private static native void jRpUtilsProgress(int percent, String text);
13
14}
15
Note: See TracBrowser for help on using the repository browser.