RE: JDEbug - problem attaching via shared memory on Win2000

2002-12-11 Thread Mark Dopheide
Thanks Andy, I haven't tried that yet, but I will today. Did you ever try shared memory? -Original Message- From: Andy Piper [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 11, 2002 12:31 AM To: Mark Dopheide; [EMAIL PROTECTED] Subject: RE: JDEbug - problem attaching via shared

RE: Java - elisp communication (was RE: BanInfo wizard anyone?)

2002-12-11 Thread Andy Piper
Yes but it's too trivial to implement as something separate from Nick's JUCI. It should be included in it. I think this is a great idea! Did I miss the post about JUCI? I presume this does some sort of reflected invocation scheme so that Emacs looks like a Java class to the Java side and vice

Offtopic: thread dump in emacs shell-mode

2002-12-11 Thread Sebastian Hauer
Hi, Sorry for being slightly off topic. But I figured this might still the right audience the answer this question because your are programming in Java using Emacs. I am trying to run a java program from the shell-mode in a cygwin-bash on windows. Once in a while I would like to press

RE: Java - elisp communication (was RE: BanInfo wizard anyone?)

2002-12-11 Thread Paul Kinnucan
Andy Piper writes: Yes but it's too trivial to implement as something separate from Nick's JUCI. It should be included in it. I think this is a great idea! Did I miss the post about JUCI? I presume this does some sort of reflected invocation scheme so that Emacs looks like a Java

Re: Offtopic: thread dump in emacs shell-mode

2002-12-11 Thread Alan Salewski
On Wed, Dec 11, 2002 at 01:05:44PM -0500, Sebastian Hauer spake thus: Hi, Sorry for being slightly off topic. But I figured this might still the right audience the answer this question because your are programming in Java using Emacs. I am trying to run a java program from the shell-mode

Implement Interface Wizard Not Working

2002-12-11 Thread Paul Kinnucan
Jeba Bhaskaran writes: When I try to use the Implement Interface wizard both from the JDE-Code Generation-Wizards and File-JDE New-Class options I am getting error messages. For example I created a TestIface interface in org package. I then try to implement the interface in the

RE: Java - elisp communication (was RE: BanInfo wizard anyone?)

2002-12-11 Thread Nick Sieger
PK == Paul Kinnucan [EMAIL PROTECTED] writes: PK Yep. I'm looking forward to seeing what Nick comes up with. Here's the package documentation that I have so far. I plan to expand more on the later sections. I'm also willing to package up what code I have and send that along, but I don't want

Re: Offtopic: thread dump in emacs shell-mode

2002-12-11 Thread Ben Menasha
From: Sebastian Hauer [EMAIL PROTECTED] Does someone know how to send Control-Break to the running java process? the command, comint-quit-subjob should do what you want. -b - Original Message - From: Sebastian Hauer [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, December 11,

Re: Offtopic: thread dump in emacs shell-mode

2002-12-11 Thread Alan Salewski
On Wed, Dec 11, 2002 at 01:33:46PM -0500, Sebastian Hauer spake thus: Hi, -Original Message- From: Alan Salewski [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 11, 2002 1:20 PM To: [EMAIL PROTECTED] Subject: Re: Offtopic: thread dump in emacs shell-mode to press

RE: Offtopic: thread dump in emacs shell-mode

2002-12-11 Thread Sebastian Hauer
Thanks a lot it worked! Regards, Sebastian PS: No more DOS window :) -Original Message- From: Ben Menasha [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 11, 2002 1:16 PM To: Sebastian Hauer; [EMAIL PROTECTED] Subject: Re: Offtopic: thread dump in emacs shell-mode From:

Cannot get jde-mode to work

2002-12-11 Thread Jesse Marlin
Okay I have some answers. I started fresh and got JDE to work right away. Then I started adding stuff back in to my init.el. Apparently the code where I add a custom hook in c-mode-common-hook to set my own c style is causing the problem. Perhaps somewhere in the cc-mode stuff it adds the

RE: Offtopic: thread dump in emacs shell-mode

2002-12-11 Thread Sebastian Hauer
Hi Alan, -Original Message- From: Alan Salewski [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 11, 2002 2:51 PM To: [EMAIL PROTECTED] Subject: Re: Offtopic: thread dump in emacs shell-mode I should have read your original message more closely. I'm sorry, but I don't

Bug in Implement Interface Wizard

2002-12-11 Thread Alphonse Bendt
hi, i think i've found a small bug in the Implement Interface Wizard. If the implemented Interface methods contain Array Params the generated Parameternames contain a ';'. running the wizard on this interface: public interface TestI { public void example(String[] fst, String[] snd); }//

Bug in Implement Interface Wizard

2002-12-11 Thread Paul Kinnucan
Hi Alphonse, Thanks for reporting this bug. I've fixed the wizard to generate names correctly for arrays of user-defined types, e.g. String[] stringArray. The fix will appear in the next release. Paul Alphonse Bendt writes: hi, i think i've found a small bug in the Implement Interface