home *** CD-ROM | disk | FTP | other *** search
/ Popular Software (Premium Edition) / mycd.iso / INTERNET / NETSCAP4.06 / CP32E406.EXE / nav40.z / jsd10.jar / netscape / jsdebug / JSThreadState.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-08-13  |  891 b   |  26 lines

  1. package netscape.jsdebug;
  2.  
  3. public final class JSThreadState extends ThreadStateBase {
  4.    protected int nativeThreadState;
  5.  
  6.    public static ThreadStateBase getThreadState(Thread var0) throws InvalidInfoException {
  7.       throw new InternalError("unimplemented");
  8.    }
  9.  
  10.    public native int countStackFrames() throws InvalidInfoException;
  11.  
  12.    public native StackFrameInfo getCurrentFrame() throws InvalidInfoException;
  13.  
  14.    public Thread getThread() {
  15.       throw new InternalError("unimplemented");
  16.    }
  17.  
  18.    public void leaveSuspended() {
  19.       throw new InternalError("unimplemented");
  20.    }
  21.  
  22.    protected void resume0() {
  23.       throw new InternalError("unimplemented");
  24.    }
  25. }
  26.