Re: BeanInfo wizard anyone?

2002-12-06 Thread Christian Mercat
http://www.entrelacs.net/home/Java/beanInfoMaker.html http://www.entrelacs.net/home/Java/beanInfoMaker.bsh I have no idea how to make it work from within JDE, Put the beanInfoMaker.bsh script in the jde/java/bsh-commands/bsh/commands/ directory. Start the BeanShell (M-x bsh) and

Re: BanInfo wizard anyone?

2002-12-06 Thread Paul Kinnucan
Hi Christian, The basic trick to integrating a bsh script with the JDEE is to have the script write a Lisp form to standard out and then invoke the script via the JDEE's jde-eval function. The jde-eval function sends an arbitrary beanshell expresion via standard I/O to the beanshell and then

Re: BanInfo wizard anyone?

2002-12-06 Thread Paul Kinnucan
Paul Kinnucan writes: Hi Christian, The basic trick to integrating a bsh script with the JDEE is to have the script write a Lisp form to standard out and then invoke the script via the JDEE's jde-eval function. The jde-eval function sends an arbitrary beanshell expresion via

Re: BeanInfo wizard anyone?

2002-12-06 Thread Ole Arndt
Christian Mercat [EMAIL PROTECTED] writes: http://www.entrelacs.net/home/Java/beanInfoMaker.html http://www.entrelacs.net/home/Java/beanInfoMaker.bsh I have no idea how to make it work from within JDE, Put the beanInfoMaker.bsh script in the

optimizing imports

2002-12-06 Thread Bibighaus, Alexander
i want to optimize my imports, for example removing duplicates, removing unused packages etc. does JDE provide this functionality anywhere?

Problem saving key-bindings

2002-12-06 Thread Olle Sundblad
Hi, I encountered a problem when I tried to set some personal key-bindings. It wouldn't save and after some trying and searching I think I found the cause: line 135 in jde.el refers to an undefiend function jde-db-menu-debug-applet. ... (cons [?\C-c ?\C-v ?\C-t] 'jde-db-menu-debug-applet)

RE: Problem saving key-bindings

2002-12-06 Thread Olle Sundblad
Should maybe have mentioned that I use jde v2.3.0 /Olle -Original Message- From: Olle Sundblad [mailto:[EMAIL PROTECTED]] Sent: den 6 december 2002 17:03 To: [EMAIL PROTECTED] Subject: Problem saving key-bindings Hi, I encountered a problem when I tried to set some personal

Re: BanInfo wizard anyone?

2002-12-06 Thread Galen Boyer
On Fri, 6 Dec 2002, [EMAIL PROTECTED] wrote: Another idea would be to add options to the jde-jeval function or new commands to * evaluate a bsh expression (e.g., a script invocation) and insert the result in a new Java source buffer * evaluate a bsh expression and insert the

Re[2]: Senator-Analyze-Speedbar Class Browser error

2002-12-06 Thread Eric M. Ludlam
Raul Acevedo [EMAIL PROTECTED] seems to think that: Eric M. Ludlam wrote: If I select Senator - Analyze - Speedbar Class Browser, I get an error: Symbol's function definition is void: semanticdb-find-nonterminal-by-token. Any ideas what this is about? You need have semanticdb

RE: BanInfo wizard anyone?

2002-12-06 Thread Nick Sieger
From: news [mailto:[EMAIL PROTECTED]]On Behalf Of Galen Boyer Sent: Friday, December 06, 2002 8:45 AM To: [EMAIL PROTECTED] Subject: Re: BanInfo wizard anyone? On Fri, 6 Dec 2002, [EMAIL PROTECTED] wrote: Another idea would be to add options to the jde-jeval function or new commands

Re: BanInfo wizard anyone?

2002-12-06 Thread Galen Boyer
On Fri, 6 Dec 2002, [EMAIL PROTECTED] wrote: From: news [mailto:[EMAIL PROTECTED]]On Behalf Of Galen Boyer Sent: Friday, December 06, 2002 8:45 AM To: [EMAIL PROTECTED] Subject: Re: BanInfo wizard anyone? [...] The translation layer could handle things like the java method signature

Compiling JSP

2002-12-06 Thread Glen Cordrey
Is there a way, using html-helper-mode with mmm mode configured for JDE support, to compile a jsp? First I'm assuming I'd need to identify a JSP compiler to use, and I don't see a way to doso I suspect the capability doesn't exist. If it does could someone point me to it, and if not has

Re: optimizing imports

2002-12-06 Thread Jeffery B. Rancier
Bibighaus, Alexander [EMAIL PROTECTED] writes: i want to optimize my imports, for example removing duplicates, removing unused packages etc.    does JDE provide this functionality anywhere? Type M-x jde-import TAB Jeff

Newbie has been stuck for weeks tryig to get stop on breakpoint.

2002-12-06 Thread Christopher Mark Balz
I've been posting once every 10 days for weeks, and hope someone can point me in the right direction. Problem: --- Not able to get any use out of jdebug yet. With What: - Windows 2000 Service Pack 3, Java 1.4 SDK, Tomcat 3.3 Servlet Engine, GNU Emacs 21.2.1, JDE 2.2.8, a web

Re: Newbie has been stuck for weeks tryig to get stop on breakpoint.

2002-12-06 Thread Andrew Hyatt
You do not need to start the program from JDE to debug it. You can start it any way you want (as long as it has those -Xdebug etc java params) and attach to it. This seems to be working for you. First of all, don't do Display-Variable. Just ignore the whole Display menu. At any rate, you

Help with emacs and jdee!

2002-12-06 Thread Rodrigo Coutinho Correia
hello, i'm trying to use jde within emacs lisp, i want to call (jde-compile) in a temp buffer and then after that, call (bsh-eval ...) to reload this last compiled class... the thing is that without (bsh-eval ...) everything goes smoothly but when i insert (bsh-eval ...) things don't work! i

RE: BanInfo wizard anyone?

2002-12-06 Thread Nick Sieger
The translation layer could handle things like the java method signature returning, say, a hashmap. The layer could have a hashmap to alist converter. I've actually got a working prototype of a generic interface/translation layer that does just that. For now, I'm calling it JUCI