home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1998 January / PCO0198.ISO / browser / net_linx / java40.jar / netscape / debug / MethodHook.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-11-03  |  537 b   |  22 lines

  1. package netscape.debug;
  2.  
  3. import java.lang.reflect.Method;
  4.  
  5. public class MethodHook extends Hook {
  6.    private Method method;
  7.  
  8.    public MethodHook(Method var1) {
  9.       this.method = var1;
  10.    }
  11.  
  12.    public Method getMethod() {
  13.       return this.method;
  14.    }
  15.  
  16.    void justEntered(ThreadState var1, Method var2) {
  17.    }
  18.  
  19.    void aboutToExit(ThreadState var1, Method var2) {
  20.    }
  21. }
  22.