| |
|
| org.netbeans.modules.debugger.importd.ImportDebugger
ImportDebugger | public class ImportDebugger extends SecondaryDebuggerSupport (Code) | | Example of Debugger Implementation. It "debugs" import statements
in Java files (so it does not need compiled .class files). Step
Into on "import java.awt.Button" opens .java file for Button and
puts current line to the first line of it.
author: Jan Jancura |
STATE_RUNNING | final public static State STATE_RUNNING(Code) | | debugger State constant.
|
STATE_STOPPED | final public static State STATE_STOPPED(Code) | | debugger State constant.
|
currentLineAnnotation | static DebuggerAnnotation.CurrentPC currentLineAnnotation(Code) | | |
serialVersionUID | final static long serialVersionUID(Code) | | generated Serialized Version UID
|
ImportDebugger | public ImportDebugger()(Code) | | |
createWatch | public Watch createWatch()(Code) | | Creates new uninitialized watch. The watch is visible (not hidden).
new uninitialized watch |
createWatch | public Watch createWatch(String expr, boolean hidden)(Code) | | Creates a watch its expression is set to initial value. Also
allows to create a watch not presented to the user, for example
for internal usage in the editor to obtain values of variables
under the mouse pointer.
Parameters: expr - expresion to watch for Parameters: hidden - allows to specify whether the watch should be presentedto the user or not (be only of internal usage of the IDE). new watch |
finishDebugger | public void finishDebugger() throws DebuggerException(Code) | | Finishes debugger.
|
getValidator | Validator getValidator()(Code) | | |
go | public synchronized void go() throws DebuggerException(Code) | | Go.
|
goToCalledMethod | public void goToCalledMethod()(Code) | | Jumps to the next call site (towards the top of the call-stack).
|
goToCallingMethod | public void goToCallingMethod()(Code) | | Jumps to the previous call site (towards the bottom of the call-stack).
|
pause | public void pause()(Code) | | Pauses debugging.
|
refreshWatches | void refreshWatches()(Code) | | |
runToCursor | public void runToCursor(Line l)(Code) | | Jumps to a given line.
Parameters: l - a line jump to |
setCurrentLine | public void setCurrentLine(Line l)(Code) | | |
setState | protected void setState(int state)(Code) | | |
startDebugger | public void startDebugger(DebuggerInfo info) throws DebuggerException(Code) | | Starts the debugger. The method stops the current debugging (if any)
and takes information from the provided info (containing the class to start and
arguments to pass it and name of class to stop debugging in) and starts
new debugging session.
Parameters: info - debugger info about class to start exception: DebuggerException - if an error occures during the start of the debugger |
stepOut | public synchronized void stepOut() throws DebuggerException(Code) | | Step out.
|
traceInto | public synchronized void traceInto() throws DebuggerException(Code) | | Trace into.
|
traceOver | public synchronized void traceOver() throws DebuggerException(Code) | | Trace over.
|
|
|
|