Package com.intellij.debugger

Provides interfaces for interacting with IDEA's debugger.

See:
          Description

Interface Summary
DebuggerContext  
PositionManager  
 

Class Summary
DebuggerManager Created by IntelliJ IDEA.
SourcePosition User: lex Date: Oct 24, 2003 Time: 8:23:06 PM
 

Exception Summary
NoDataException Copyright (c) 2000-2004 by JetBrains s.r.o.
 

Package com.intellij.debugger Description

Provides interfaces for interacting with IDEA's debugger. The main extensibility point of the debugger is the possibility for a plugin to provide custom mapping of positions in compiled classes to source code lines, which is mostly necessary for JSP debugging. Such mapping is provided through the PositionManager interface. One standard implementation of this interface for application servers compatible with the JSR-45 specification is provided by the JSR45PositionManager class. Another implementation of this interface, which can be used as an example for the debugger API, is found in the Tomcat plugin.