1 // Runtime.java, created Fri Apr 5 18:36:41 2002 by joewhaley
2 // Copyright (C) 2001-3 John Whaley <jwhaley@alum.mit.edu>
3 // Licensed under the terms of the GNU LGPL; see COPYING for details.
4 package joeq.ClassLib.sun15_win32.java.lang;
5
6 /*
7 * @author John Whaley <jwhaley@alum.mit.edu>
8 * @version $Id: Runtime.java 1451 2004-03-09 06:27:08Z jwhaley $
9 */
10 public class Runtime {
11
12 public static native Runtime getRuntime();
13 synchronized native void loadLibrary0(Class fromClass, String libname);
14 }