classpath progress

This commit is contained in:
Joel Dice
2007-07-27 17:56:19 -06:00
parent c9f9b039e6
commit 363801af1c
10 changed files with 211 additions and 24 deletions

View File

@ -5,6 +5,8 @@ public final class Array {
public static native Object get(Object array, int index);
public static native void set(Object array, int index, Object value);
public static native int getLength(Object array);
private static native Object makeObjectArray(Class elementType, int length);