Index: modules/luni-kernel/src/main/java/org/apache/harmony/kernel/vm/VM.java =================================================================== --- modules/luni-kernel/src/main/java/org/apache/harmony/kernel/vm/VM.java (revision 785439) +++ modules/luni-kernel/src/main/java/org/apache/harmony/kernel/vm/VM.java Wed Jul 08 14:53:15 PDT 2009 @@ -59,6 +59,25 @@ }; /** + * This method must be provided by the VM vendor. Returns the class of the + * method (including natives) at the specified depth on the stack of the + * calling thread. Frames representing the VM implementation of + * java.lang.reflect are not included in the list. Notes: + * + * + * @param depth the stack depth of the requested Class + * @return the Class at the specified depth + * @see Class#getStackClasses + */ + public static Class getStackClass(int depth) { + return null; + } + + /** * This method must be provided by the vm vendor, as it is used by other * provided class implementations. For example, * java.io.ObjectInputStream.readObject() and