home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-1998 - Modelworks Software
- // @Modified build 239 cm19981208 - added document comment
-
- /**
- @Tool: up~sends the up command to the jdb debugger.
- @EndTool:
- @Summary: up~sends the up command to the jdb debugger
- */
-
- function DoCommand()
- {
- var jdkDebugger = getGlobal("JDKDebugger", null);
- if (jdkDebugger)
- {
- jdkDebugger.sendCommand("up\n", true);
- }
- }
-
- !!/Script
-
-