1 55 56 package org.apache.bsf.debug.jsdi; 57 58 import org.apache.bsf.debug.util.RemoteService; 59 import java.rmi.RemoteException ; 60 61 76 public interface JsCallbacks extends RemoteService { 77 78 81 public boolean poll() throws RemoteException ; 82 83 87 public void handleBreakpointHit(JsContext cx) 88 throws RemoteException ; 89 90 94 public void handleEngineStopped(JsContext cx) 95 throws RemoteException ; 96 97 101 public void handleExceptionThrown(JsContext cx, Object exception) 102 throws RemoteException ; 103 104 108 public void handleSteppingDone(JsContext cx) 109 throws RemoteException ; 110 } 111 | Popular Tags |