home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / VPage / Java.bin / CLASSES.ZIP / sun / tools / debug / DebuggerCallback.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-07-08  |  518 b   |  14 lines

  1. package sun.tools.debug;
  2.  
  3. public interface DebuggerCallback {
  4.    void printToConsole(String var1) throws Exception;
  5.  
  6.    void breakpointEvent(RemoteThread var1) throws Exception;
  7.  
  8.    void exceptionEvent(RemoteThread var1, String var2) throws Exception;
  9.  
  10.    void threadDeathEvent(RemoteThread var1) throws Exception;
  11.  
  12.    void quitEvent() throws Exception;
  13. }
  14.