at http://sunsite.auc.dk/jde/
JDE-2.1.6beta12 Release Notes
* Added trace classes commands: JDEbug->Trace Class Prep and
JDEBug->Trace Class Unload.
These commands cause the debugger to display a message each time a class
is prepared (loaded?) or unloaded. Options include whether to suspend
execution
of the process and filters for restricting the trace to a specified set of
classes.
* Added trace methods commands: JDEbug->Trace Method Entry and
JDEBug->Trace Method Exit
These commands cause the debugger to display a message each time a method is
entered or exited. Options include restricting the trace request to a
specified
thread, specifying whether to suspend the process when a method is
entered or
exited, and restricting the trace request to methods of a specified class or
set of classes or a specified set of methods.
* Added method completion command contributed by Rodrigo Reyes
<[EMAIL PROTECTED]>
This package adds smart completion to the JDE. Here is how it works:
put the cursor at the end of a statement "under
construction", eg. "myVariable.rem<CURSOR HERE> and call the
jde-complete-at-point emacs-lisp function (this is by default
C-c C-v C-.). A completion is then inserted. If multiple completions are
possible, calling the completion function again will cycle through
all the possibilities (as dabbrev-mode does).
* Added jde-submit-bug-report command contributed by Phillip Lord
<[EMAIL PROTECTED]>
* Added jde-browse-class command contributed by Rohit Namjoshi
<[EMAIL PROTECTED]>
This command displays the class at point in the BeanShell class browser.
The class browser shows the method signatures and fields of the specified
class.
* Fixed bug in JDEbug->Display->String where strings with backslashes
caused a Lisp
evaluation error.
* Amended jde-db-make-qualified-class-name-regexp to permit package names
to begin
with underscores. Contributed by "Patrick J. McNerthney"
<[EMAIL PROTECTED]>.