"

2013 FRC Java API

"

com.sun.squawk
Class Debugger

java.lang.Object
  extended by com.sun.squawk.Debugger
Direct Known Subclasses:
SDA

public abstract class Debugger
extends Object

A Debugger is an object that acts as a conduit between an isolate being debugged and an attached JPDA debugger client.


Nested Class Summary
static class Debugger.BreakpointEvent
           
static class Debugger.Event
          An Event instance encapsulates the details of an event that occurred in the VM that an attached JPDA debugger client may want to be notified about.
static class Debugger.ExceptionEvent
           
static class Debugger.LocationEvent
          A LocationEvent includes extra detail about the location (method and instruction offset) at which an event occurred.
static class Debugger.SingleStep
          A SingleStep instance represents the stepping state of a thread that is currently performing a single step.
static class Debugger.SingleStepEvent
           
 
Constructor Summary
Debugger()
           
 
Method Summary
abstract  void notifyEvent(Debugger.Event event)
          Notifies this debugger when an event it may be interested in occurs.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Debugger

public Debugger()
Method Detail

notifyEvent

public abstract void notifyEvent(Debugger.Event event)
Notifies this debugger when an event it may be interested in occurs.

Parameters:
event - the event being reported to this debug agent

"

2013 FRC Java API

"

"
For updated information see the Java FRC site
"