You are not logged in Log in Join
You are here: Home » Members » Chui Tey » DebugInterface » IApplicationDebugger » wikipage_view

Log in
Name

Password

 
 
FrontPage » DebugInterfaces »

IApplicationDebugger

class IApplicationDebugger:

  def QueryAlive(self):
      "Indicates the debugger is alive"

  def CreateInstanceAtDebugger(self, klass):
      "Allows debugger to create objects in the debugger process"

  def onDebugOutput(self, outputString):
      "Displays output in the output window"

  def onHandleBreakPoint(self, IRemoteDebugApplicationThread, 
      BREAKREASON, IActiveScriptErrorDebug=None)
      "Indicates when a breakpoint is hit, and the thread in
      which breakpoint has occurred."

  def onClose(self):
      "This method is called when IDebugApplication::Close is called"

  def onDebuggerEvent(self, event):
      "Supports custom events"