minor nit about jde-ant

2002-05-23 Thread Schewe, Jon (MN65)
I'm using jde-2.2.8 and recently noticed that if there is no prj.el file for a java project, so it's using the defaults, jde-ant-build files with an error from inside compile-internal. This is due to jde-ant-build trying to cd to the directory containing the prj.el, which is nil. Does this

RE: jde-ant-build

2002-05-22 Thread Schewe, Jon (MN65)
Jeff Rancier wrote: Hello All. When I run jde-ant-build on a Java buffer, I get the following: cd h:/cvsdev/user/jrancier/lookupgenerator/ h:/usr/pkg/jakarta-ant-1.5Beta1/bin/ant.bat -Dant.home=h:/usr/pkg/jakarta-an t-1.5Beta1 -buildfile

Trying to trace error in JDE

2002-05-22 Thread Schewe, Jon (MN65)
Is there a way to keep jde from catching errors and not entering the debugger? I keep getting this error: File mode specification error: (wrong-type-argument integer-or-marker-p nil) when I open Java files in jde-mode. It's not all the time though. Just decides to show up after a while and

RE: jde-ant-build

2002-05-21 Thread Schewe, Jon (MN65)
That's odd then. It works in 1.4.1, which is what I use. I'd suggest checking the ant developer list to see if the commandline parsing got broken in 1.5betax -Original Message- From: Jeff Rancier [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 21, 2002 2:52 PM To: Schewe, Jon (MN65

RE: Compile shows jar contents?

2002-05-14 Thread Schewe, Jon (MN65)
This is the result of a classpath that is improperly quoted. What's happening here is that bash is trying to execute the jar file becuase ; is the command separator character in bash. This usually means you need to mess around with the various variables in jde that quote classpaths.

RE: error navigation

2002-02-26 Thread Schewe, Jon (MN65)
-hook-jps) -Original Message- From: Schewe, Jon (MN65) [mailto:[EMAIL PROTECTED]] Sent: Monday, February 25, 2002 3:23 PM To: '[EMAIL PROTECTED]'; [EMAIL PROTECTED] Subject: RE: error navigation Interestingly enough I just wanted to do this today too: (defun compilation-filter

RE: error navigation

2002-02-25 Thread Schewe, Jon (MN65)
Interestingly enough I just wanted to do this today too: (defun compilation-filter-hook-jps () (interactive) ;;Just want to search over the last set of stuff, so exchange point and mark? (exchange-point-and-mark t) (while (re-search-forward [/]instrumented nil t) (replace-match

RE: Can't compile when spaces in directory

2001-11-15 Thread Schewe, Jon (MN65)
When I compile a java file I get the following output: CompileServer output: c:/Documents and Settings/dhegyi/My Documents/Test.java javac: invalid flag: c:/Documents Usage: javac options source files ... It doesn't seem to like the spaces in the

RE: people using jdk 1.2?

2001-08-13 Thread Schewe, Jon (MN65)
How would you address the possibility of each project using a different version of the same class file? The filenames and jar files are the same, but the code is different. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, August 13, 2001 12:35 PM

RE: Renaming Proposal

2001-07-18 Thread Schewe, Jon (MN65)
Yeah and what do you put at the top of a file to invoke it? -*- j -*- ? -Original Message- From: Matthew Sherborne [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 18, 2001 4:56 PM To: [EMAIL PROTECTED] Subject: Re: Renaming Proposal To invoke jde-mode do you type jmode-mode

RE: Rescanning class... message at bottom

2001-05-15 Thread Schewe, Jon (MN65)
Is it possible for JDE to have multiple bean shells running so that each project has their own set of classes and whatnot for this. THen you wouldn't get hit by the rescanning classes bit when switching projects. -Original Message- From: Paul Kinnucan [mailto:[EMAIL PROTECTED]] Sent:

RE: jde

2001-04-18 Thread Schewe, Jon (MN65)
I think this is really cool as well, however I noticed one thing. When JDE asks me for the name of the package there is no suggested package, however if I run jde-gen-class after I've opened a buffer, without these hooks, I get the proper package name suggested. Can this be fixed?

RE: jde

2001-04-18 Thread Schewe, Jon (MN65)
Nevermind, I was creating the file in a directory where no package had yet been defined. Sorry. -Original Message- From: Schewe, Jon (MN65) [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 18, 2001 11:12 AM To: '[EMAIL PROTECTED]'; Sonu Luthra Cc: [EMAIL PROTECTED]; [EMAIL

RE: Re[2]: minor nits

2001-04-17 Thread Schewe, Jon (MN65)
Yep, that did it. How come -3 doesn't work anymore? Are these now ignored? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 17, 2001 2:36 AM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re[2]: minor nits

problem with 2.2.7beta7

2001-04-16 Thread Schewe, Jon (MN65)
I just installed 2.2.7beta7 under XEmacs 21.1.3. Things worked ok with beta6, except for etrace. Signaling: (wrong-number-of-arguments #compiled-function (sym buffer) "...(6)" [local-variable-p sym buffer t] 4 15941 1) local-variable-if-set-p(jde-run-working-directory) (and

Minor nits

2001-04-16 Thread Schewe, Jon (MN65)
- is it possible to teach c-fill-paragraph not to break {@link ...} across a line? If it is broken then javadoc doesn't like it. - when I upgraded to 2.2.7beta6 my coloring changed, previously public, private and protected got different colors. Now they're all the same color. Is this change

RE: Minor nits

2001-04-16 Thread Schewe, Jon (MN65)
w ignoring the values of these font-lock variables, or perhaps is something for jde-font-lock getting initialized when jde is loaded and not noticing the updates to these variables later on? -Original Message----- From: Schewe, Jon (MN65) [mailto:[EMAIL PROTECTED]] Sent: Monday, April 16, 20

RE: PROPOSAL: New Java Build Feature

2001-03-19 Thread Schewe, Jon (MN65)
I don't like Ant for two reasons: 1. it's hard to reuse project definitions Yes, this can be a problem, I've ended up writing some templates that I just start with each time I define a new project. 2. it's not GPLed/LGPLed But it is BSD license, which is even more open than GPL/LGPL, so

RE: PROPOSAL: New Java Build Feature

2001-03-19 Thread Schewe, Jon (MN65)
Have you thought about using jikes for dependancy checking? Or even just taking the dependancy checking code out of it and using that separatly? It is open source and I've found it's dependancy checking to be most excellent. -Original Message- From: Nic Ferrier [mailto:[EMAIL

RE: PROPOSAL: New Java Build Feature

2001-03-19 Thread Schewe, Jon (MN65)
Part of this has to do with the language, and the optimizations that the compiler make with respect to static and final methods and the fact that method bindings are done at compile time, unless using reflection. -Original Message- From: Denis, Ronald J (Ronald)** CTR ** [mailto:[EMAIL

RE: font-lock-add-keywords issue

2001-02-23 Thread Schewe, Jon (MN65)
There are two ways to get it work, with FSF Emacs you use font-lock-add-keywords, or so I'm told. With XEmacs this works rather well: (add-to-list 'java-font-lock-keywords-3 '("(FIX\\)" 1 font-lock-warning-face t)) This is at the top level in my .emacs.