In the environment I happen to work in I very commonly want to run an
application with different arguments. Here is a simple wrapper which
will run the class in the current buffer. If a prefix argument is
supplied, the jde prompts for different arguments. This is a trival
code change from the default which prompts for a different class if a
prefix argument is given. I find this new version much more useful.
It is possible that others would find it useful, too.
(defun java-run-class (arg)
(interactive "P")
(let ((jde-run-read-app-args arg))
(jde-run nil)))
Cheers,
--
Robert