At 04:48 PM 12/27/99 -0500, you wrote:
>Hi,
>
>Is there a way to add the "function-menu" feature to the JDE mode?
>
>That is one thing I miss from the java-mode.
>
Just to be clear, jde-mode is a superset of java-mode. Everything in
java-mode is in jde-mode. Thus, you do not lose anything from java-mode by
using the JDE. As for the function menu, it is a feature of imenu.el, not
java-mode. java-mode (and therefore jde-mode) supports imenu by providing
regular expressions for locating "functions" within a Java source buffer.
Actually, JDE mode replaces the regular expressions provided by java-mode
with a more powerful and efficient set. (These imenu expressions are also
used by speedbar, which is an alternative to imenu.) Anyway, to get the
function menu, add the following to your jde-mode hook function:
(imenu-add-to-menubar "Function")
- Paul