home *** CD-ROM | disk | FTP | other *** search
- package netscape.debug;
-
- import java.lang.reflect.Method;
-
- public class MethodHook extends Hook {
- private Method method;
-
- public MethodHook(Method var1) {
- this.method = var1;
- }
-
- public Method getMethod() {
- return this.method;
- }
-
- void justEntered(ThreadState var1, Method var2) {
- }
-
- void aboutToExit(ThreadState var1, Method var2) {
- }
- }
-