Re: C-c Cv C-b build with Ant does not work

2002-10-08 Thread Andrew Hyatt
(quote (1.3))) '(jde-ant-buildfile ) '(jde-ant-invocation-method (quote (Script))) '(jde-compile-option-optimize t)) --- Andrew Hyatt [EMAIL PROTECTED] wrote: Ralph Jocham [EMAIL PROTECTED] writes: Hi, I setup JDE to use my ant script. But when typing the c-c c-v c-b

Re: [JDEE] Mailing list feature request

2002-10-12 Thread Andrew Hyatt
Couldn't you just filter on the jde address, such as this (for reading mail with gnus's nnimap): (setq nnimap-split-rule '((INBOX/JDE ^[Tc][oc].*jde))) Ralph Jocham [EMAIL PROTECTED] writes: Hi, I am on a couple of mailing lists. That means I get tons of mails a day. Some mailing lists add

Re: JDEE on Mac OS X (was: JDEE Home Page)

2002-10-30 Thread Andrew Hyatt
I submitted a patch a few weeks ago to get JDE to work with Mac OS X's strange Java directory structure. Hopefully it will appear in the next version of JDE. Dwight Shih [EMAIL PROTECTED] writes: When you say that it doesn't work, what exactly isn't working? I'm a recent switcher on Mac OS

Re: prj.el under source control

2002-11-19 Thread Andrew Hyatt
Nascif Abousalh-Neto [EMAIL PROTECTED] writes: PS: Still no comments on my previous question on how to have subprojects appending to paths defined on parent projects, instead of just overriding then... I haven't looked at the code to do this, but I imagine this would be a fairly easy fix.

Re: prj.el under source control

2002-11-19 Thread Andrew Hyatt
... So you could have jde-global-classpath = ($BASE_VALUE this/project/dir) -Original Message- From: Andrew Hyatt [ mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] ] Sent: Tuesday, November 19, 2002 4:56 PM To: Abousalh-Neto, Nascif [NCRTP:3X50:EXCH] Cc: [EMAIL

Re: Refactoring Wish List

2002-12-02 Thread Andrew Hyatt
It's there now, but the code is pretty alpha in my opinion. I think it should stabilize in the next few weeks. Sebastian Hauer [EMAIL PROTECTED] writes: Not exactly refactoring but unbelievably useful. Find the usage of a variable or method name. If JDEE or some other free emacs mode is

Re: JDEE installer?

2002-12-04 Thread Andrew Hyatt
Althought we're getting off the topics of installers, I say I agree, but that doesn't mean GUI's. If emacs people like GUI's they wouldn't be emacs people. But we need better UI for jde in general. For example, what's with the C-c C-v keybindings? This is only one key off from the C-x C-c

Re: JDEE installer?

2002-12-04 Thread Andrew Hyatt
Gee, I really think you are being unreasonable here. I think JDE could improve in user friendliness. A lot of things in emacs-land can. That doesn't mean to switch to GUI's or anything. But JDE SHOULD be user-friendly. You can have user-friendly emacs programs, look at BBDB. It's usually

Re: keybindings (was Re: JDEE installer?)

2002-12-04 Thread Andrew Hyatt
Peter Dobratz [EMAIL PROTECTED] writes: Andrew Hyatt writes: For example, what's with the C-c C-v keybindings? This is only one key off from the C-x C-c binding which exits emacs. Not good. I think the point of these keybindings is that they are easy to type. In any case, you

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

Re: Problem setting breakpoint with JDEbug

2003-01-02 Thread Andrew Hyatt
Very odd. This should work. To double check, perhaps you can execute these lines: (if (not (fboundp 'line-beginning-position)) (defsubst jde-line-beginning-position (optional N) (save-excursion (beginning-of-line N) (point))) (defalias 'jde-line-beginning-position

Re: JDEbug - Show debug frame on XEmacs

2003-01-13 Thread Andrew Hyatt
Your problem sounds unsurprising. Like a lot of brand new jde code, it is not tested on xemacs. Thanks for bringing this to my attention, I'll see if there is a good workaround (those more familiar with xemacs please let me know if you know this), else I'll use something like your workaround.

Re: JDEbug - Show debug frame on XEmacs

2003-01-13 Thread Andrew Hyatt
Sorry, I don't meet to imply that your workaround isn't good. But maybe there's an xemacs make-frame-names-alist equivalent, so it could be a one line change. Andrew Hyatt [EMAIL PROTECTED] writes: Your problem sounds unsurprising. Like a lot of brand new jde code, it is not tested

Re: JDEE plugins

2003-02-18 Thread Andrew Hyatt
I wonder if there's a place in here for kawa (http://www.gnu.org/software/kawa/). It would be ideal for java-elisp communication, since it's a scheme environment that runs in Java. It even has an elisp mode! Galen Boyer [EMAIL PROTECTED] writes: On Tue, 18 Feb 2003, [EMAIL PROTECTED] wrote:

Re: Introspection based Java class browser....also demonstrates alittle bit of java and lisp integration...

2003-02-19 Thread Andrew Hyatt
This is interesting. I know you've mentioned it before. If this would help the JDE project, I could do this fairly easily. We have the class parsing code already, we just have to tie it into semantic. But since we are not using the latest Semantic, and as far as I know we have no immediate

Re: Why the JDEE?

2003-02-21 Thread Andrew Hyatt
I could not agree more. We love JDEE because we love emacs. Emacs will always be a better editor than any other IDE, therefore JDEE will always be better for editing then any other IDE. Throw in the compiling and debugging tools already there, and it's already an excellent tool. Hopefully

Re: Questions from a newguy

2003-02-21 Thread Andrew Hyatt
I think groups.google.com can answer most of these questions. If not, try http://www.emacswiki.org/cgi-bin/wiki.pl For example, I know people have implemented Ctrl-Tab for emacs. Tab questions are puzzling for emacs newbies and are asked a lot on usenet, so groups.google.com will help there as

Re: Why the JDEE?

2003-02-24 Thread Andrew Hyatt
I had thought of this as well. Perhaps the JSwat maintainer would be interested in working on it. If you download the JSwat CVS code, you see they arleady use JDEE. See: http://home.nc.rr.com/nascifandelaine/jswat.el Paul Kinnucan [EMAIL PROTECTED] writes: Ralph Jorre writes: I don't

Re: tags?

2003-02-28 Thread Andrew Hyatt
Yes, using tags gives you access to functionality that JDE doesn't have. Like a quick take-me-to-class functionality. JDE has several take-me-to-class-at-point functionality, but that's not quite the same. Plus, JDE often makes you choose between classes of the same name in different packages,

Re: tags?

2003-02-28 Thread Andrew Hyatt
2001, 23:40:03 Addresses: [EMAIL PROTECTED], http://ctags.sourceforge.net [/tmp] -Original Message- From: Andrew Hyatt [mailto:[EMAIL PROTECTED] Sent: Friday, February 28, 2003 9:09 AM To: Le Wang Cc: [EMAIL PROTECTED] Subject: Re: tags? Yes, using tags gives you access

Re: tags?

2003-02-28 Thread Andrew Hyatt
Le Wang [EMAIL PROTECTED] writes: --- Andrew Hyatt [EMAIL PROTECTED] wrote: Yes, using tags gives you access to functionality that JDE doesn't have. Like a quick take-me-to-class functionality. JDE has several take-me-to-class-at-point functionality, but that's not quite the same. Plus

Re: Mac OS X....again

2003-03-03 Thread Andrew Hyatt
what is the value you have set for jde-jdk, and for jde-jdk-registry? Tor Olaussen [EMAIL PROTECTED] writes: Hi, I'm new to the list and trying to get jde up and running on my Mac OS X 10.2.4... I've downloaded and installed jde-2.3.2 with necessary support packages. Everything seems to

Re: [PATCH] smart complete?

2003-04-02 Thread Andrew Hyatt
otisg - What new packages on xemacs.org are you referring to? andy - I'm not sure I would like tab to complete. Completion sometimes is very, very slow. I once narrowed down the slowness to the part where we have to go through the import list and try to fully qualify the class getting

Re: Bug Report JDE2.3.3beta1

2003-06-17 Thread Andrew Hyatt
Jeba Bhaskaran [EMAIL PROTECTED] writes: Please enter the details of your bug report here: 1. After installing the beta jde 2.3.3, I have lost syntax highlighting. I installed overlay-fix and stil the syntax highlighting is not working. 2. I am not able to see the jde-xref-... options. I

Re: Bug Report JDE2.3.3beta1

2003-06-17 Thread Andrew Hyatt
My guess is that this is a limitation of xemacs on Windows. I can use utf-8 as an encoding system on xemacs on Linux. Perhaps on the mailing list that knows a bit more about xemacs can help? Jeba Bhaskaran [EMAIL PROTECTED] writes: --- Andrew Hyatt [EMAIL PROTECTED] wrote: Jeba Bhaskaran

Re: Bug Report JDE2.3.3beta1

2003-06-18 Thread Andrew Hyatt
Well, let me see if I can get around this problem. I could perhaps make it so that it will work on Xemacs on Windows, unless your variable/method/class etc names are non-ascii. I'll try and check in a fix today. Jeba Bhaskaran [EMAIL PROTECTED] writes: So would I be wrong in saying

Re: [ANNOUNCEMENT] JDEE 2.3.3beta1 available at ...

2003-06-19 Thread Andrew Hyatt
I think he means the local user's guide, not the website's user's guide. On Thursday, June 19, 2003, at 11:04 AM, Nic Pottier wrote: I can't find any reference to this in the users guide. Can you give us another clue? Maybe the name of the command? -Nic * This release introduces a

Re: Trouble Customizing Variable

2003-07-07 Thread Andrew Hyatt
Your error usually indicates your .emacs file was messed up - perhaps it was missing a parenthesis somewhere, so when it came time to parse your .emacs file to find the location to insert the customization, it failed. Aaron Davies [EMAIL PROTECTED] writes: On Sunday, July 6, 2003, at 08:25

Re: ecb question

2003-07-07 Thread Andrew Hyatt
I don't use ECB, but if anyone from that project is interested in doing what Paul suggests, please email me with any questions you might have about jde-xref. Paul Kinnucan [EMAIL PROTECTED] writes: Paul Kinnucan writes: Berndl, Klaus writes: [snip] But: IMHO the best would be

Re: jde-xref-store-prefixes queston

2003-07-08 Thread Andrew Hyatt
This probably is a bug. I recommend you keep this variable populated, though, but in the meantime I'll look into it. Schmitt, Christian (ext.) [EMAIL PROTECTED] writes: Hi, I've been trying to get the new xref stuff in JDEE to work. When looking at the doc string for the variable

Re: jde-xref-store-prefixes queston

2003-07-08 Thread Andrew Hyatt
) jde-xref-cache-size) (cdr jde-xref-cache) jde-xref-cache))) data)) (jde-xref-create-package-hashes t))) Andrew Hyatt [EMAIL PROTECTED] writes: This probably is a bug. I recommend you

Re: JDE-CVS-Commit

2003-07-09 Thread Andrew Hyatt
Paul Kinnucan [EMAIL PROTECTED] writes: [EMAIL PROTECTED] writes: Update of /pack/anoncvs/jde/lisp In directory sunsite.dk:/tmp/cvs-serv11659 Modified Files: jde-xref.el Log Message: Made jde-xref-store-prefixes non-optional. I think if we didn't do this, most

Re: JDE-CVS-Commit

2003-07-09 Thread Andrew Hyatt
Paul Kinnucan [EMAIL PROTECTED] writes: I think it's nice to have all the jde-xref variables to have defaults that allow a new user to try it out quickly without having to do any preliminary setup, which is now required with your latest change. Previously, the default for this variable was

Re: JDE-CVS-Commit

2003-07-09 Thread Andrew Hyatt
Paul Kinnucan [EMAIL PROTECTED] writes: In my ideal world, no setup would be required. If you did nothing, the JDEE would xref the code in the current package (or perhaps prompt you to enter a list of packages with the default being the current package) and store the result in the root of the

Re: Useful helper functions - region based jde-gen-try

2003-08-04 Thread Andrew Hyatt
Chitale, Sandip V [EMAIL PROTECTED] writes: My original question was can I avoid M-x jde-gen-try RET Throwable RET and simply type t r y SPC with region around - x = x/0; and get the same behaviour as above. Any thoughts? sandip I'm guessing that hard to do without

Yank and indent

2003-08-06 Thread Andrew Hyatt
I was think it would be nice if yanks would indent properly. I wrote the following code to do that. Enjoy... (defadvice yank (after jde-indent-after-yank activate) Do an indent after a yank (let ((transient-mark-mode nil)) (indent-region (region-beginning) (region-end) nil)))

Re: Completion for jde-open-class-source

2003-08-15 Thread Andrew Hyatt
This is nice. I don't believe there is a way to get a list of class names through reflection (doing so might be considered a security violation by the Java designers). So either we get the list through a recursive descent of the jde-sourcepaths or we do what you have done. Personally, I just

Re: Refactoring with JDE?

2003-09-03 Thread Andrew Hyatt
Paul Kinnucan [EMAIL PROTECTED] writes: Hi Andy, Yes, the current version of semantic has the ability to parse local variables. The upcoming Semantic 2.0 will have a full-blown, yacc-style parser generator, developed by David Ponce, that should support any feature the JDEE needs. Indeed, it

Re: Refactoring with JDE?

2003-09-03 Thread Andrew Hyatt
On Wednesday, September 3, 2003, at 07:19 PM, Nascif Abousalh-Neto wrote: Good point. What do you think should be the way to go with support for refactorings in JDE? I can see three major directions: 1) Expanding on the jde-xref functionality 2) Using the new semantic 2.0 - assuming it has all

Re: Debug JSP/servlet stuff with JDEE?

2003-09-08 Thread Andrew Hyatt
[EMAIL PROTECTED] (Kai Grojohann) writes: My coworker was so happy to tell me today that he can debug JSP/servlet applications with hit NetBeans thingy and that it is so easy. I guess that this must also be possible with JDEE. I am used to doing a lot of debugging using print statements,

Re: Reference card for JDEE

2003-10-07 Thread Andrew Hyatt
This is nice! It's actually a good overview to show what things could be easier. For example, one of things I want to do after the current release goes out is to make debugging it's own mode, so simple edebug-like keybindings will be in effect... Charles Sutton [EMAIL PROTECTED] writes:

RE: integrating the eclipse compiler with jde

2003-10-16 Thread Andrew Hyatt
I think I've tried it, but the eclipse plug-in you have to install is out of date, and does not work with the current version of Eclipse. It's been a while since I've look at it, but that's what I remember. -Original Message- From: Molitor, Stephen L [mailto:[EMAIL PROTECTED] Sent:

Re: unusual symbol lookup feature

2003-10-24 Thread Andrew Hyatt
I just noticed the same thing yesterday. Also, it imported a class (the same class, in you instance it would be class A) as well. I don't know what that was about. I figured I just hit a wrong key combination, but maybe not.. [EMAIL PROTECTED] writes: Hi, I find C-c C-v C-y excellent

Re: JDEBug - Invalid stack frame

2003-11-05 Thread Andrew Hyatt
Try using 1.4.1, if you aren't already. At about that time, Sun started just decompiling the code needed for debugging, previously it decompiled everything. Henrik Kjr [EMAIL PROTECTED] writes: Yes, the invalid stack frame message disappears automatically after a while, so everything is okay

Re: occasional error compiling due to jde-xref-compile-hook

2003-11-05 Thread Andrew Hyatt
Thanks, this looks like a bug. For the time being, substitute with this line: (add-hook 'jde-compile-finish-hook 'jde-xref-update-caller-table) Raul Acevedo [EMAIL PROTECTED] writes: I occasionally get the following error when I compile a Java file: error in process filter: Symbol's

Re: occasional error compiling due to jde-xref-compile-hook

2003-11-06 Thread Andrew Hyatt
In that case, I better take it out. Sorry for the confusion. Raul Acevedo [EMAIL PROTECTED] writes: Andrew Hyatt wrote: Thanks, this looks like a bug. For the time being, substitute with this line: (add-hook 'jde-compile-finish-hook 'jde-xref-update-caller-table

Re: jde-2.3.3 error by jde-bug-evaluate-expression

2004-01-26 Thread Andrew Hyatt
Does it ask for an expression to evaluate first? Harald Maier [EMAIL PROTECTED] writes: Hello all, I installed jde-2.3.3 with eieio-0.17 elib-1.0 semantic-1.4.4 speedbar-0.14beta4 When I evaluate 'jde-bug-evaluate-expression' in a JDEbug session I get the following error:

Re: jde-2.3.3 error by jde-bug-evaluate-expression

2004-01-26 Thread Andrew Hyatt
What sort of thing are you trying to evaluate? Perhaps the bug is that the evaluation returns null (legitimately, perhaps) and throws an error incorrectly? Or perhaps a variable has gone out of scope and you are trying to evaluate it? Harald Maier [EMAIL PROTECTED] writes: Andrew Hyatt

Re: xref help

2004-02-19 Thread Andrew Hyatt
From where are you doing a C-c C-v a? From inside a function should work. Also, to get useful results, you need classfiles that match up with your sources. So if your classfiles are out of date by a while, you may see some strange things. I haven't heard of problems like you've described,

Re: xref help

2004-02-19 Thread Andrew Hyatt
or do I need to rebuild it? I a working on a very large code base so is there any way to just update what has changed or just update files/packages i specify? thanks aaron At Thu, 19 Feb 2004 14:42:09 -0800, Andrew Hyatt wrote: From where are you doing a C-c C-v a? From inside

Re: fatal error

2004-02-24 Thread Andrew Hyatt
Try evaling this, it's what caused my problems on 21.3a: (eval-after-load dired '(define-key dired-mode-map [f3] (lambda () (interactive) (w32-browser (dired-replace-in-string

Re: fatal error

2004-02-24 Thread Andrew Hyatt
Sorry, you'd have to eval this as well before the last thing I sent: (defun w32-browser (doc) Browse to a particular file/URL using default web browser (w32-shell-execute 1 doc)) Latchezar Dimitrov [EMAIL PROTECTED] writes: Hi, I'm not sure what you were talking about. I unpacked

Re: jde-xref works for some methods, not for others

2004-04-29 Thread Andrew Hyatt
I'm not sure what to tell you Raul. I haven't seen this behavior. If this is for some publicly available source, you could send me the source and I could try and reproduce it. Otherwise, it sounds like you are missing some data - and i suspect that maybe the superclasses of A and B may have

Re: Jde Xref problem

2004-08-18 Thread Andrew Hyatt
I think jde-usages is a perfectly acceptable replacement, and there is really no difference in functionality as far as I know. On Aug 18, 2004, at 4:08 AM, Jens Lautenbacher wrote: Maybe OT, but does anybody know what feature the normal jde-xref has that isn't done faster and without all the db

Re: JDEE Wiki?

2004-10-18 Thread Andrew Hyatt
Yeah, I second the motion of using the Emacs Wiki - that would be the most natural place for it. A lot of things that come up are related to other Emacs packages, so the cross-referencing would be useful. On Oct 18, 2004, at 5:05 PM, Ole Arndt wrote: Hi Nascif, Nascif Abousalh-Neto [EMAIL