Re: JDE is slooooow to visit files

2005-05-21 Thread Phillip Lord
James == James Pharaoh [EMAIL PROTECTED] writes: James Hi, James I started using JDE recently and all was fine... As time goes James on, however, it seems to take longer and longer to visit James files. James It takes about 15 seconds now, displaying the message at the James bottom

Re: Continous Testing

2005-02-22 Thread Phillip Lord
Nascif == Nascif Abousalh-Neto [EMAIL PROTECTED] writes: Nascif Hi all, Nascif I recently learned about this Eclipse plugin: Nascif http://pag.csail.mit.edu/continuoustesting/ The idea of this Nascif plugin is to use idle cycles to run your unit testcases - as Nascif soon as you

Re: java folding

2005-02-02 Thread Phillip Lord
Guy == Guy Thomas [EMAIL PROTECTED] writes: Guy I first of all want to have a quick overview of the method Guy signatures in the current file. ECB might be what you are looking for. If this takes up too much screen real estate for you, imenu, or the classes menu might be what you want.

Re: java folding

2005-02-02 Thread Phillip Lord
Jens == Jens Lautenbacher [EMAIL PROTECTED] writes: Jens On Wed, 2005-02-02 at 11:59 +, Phillip Lord wrote: Guy == Guy Thomas [EMAIL PROTECTED] writes: Guy I first of all want to have a quick overview of the method Guy signatures in the current file. ECB might be what

Re: Auto-format code to width = 80

2004-12-14 Thread Phillip Lord
Jeffrey == Jeffrey Phillips [EMAIL PROTECTED] writes: Jeffrey Not sure about auto-format, but I highlight (my warning Jeffrey face is red) the part of lines that extend past 80 Jeffrey characters using this: Jeffrey (defun my-font-lock-prepends (mode) Jeffrey Adds a 80 character

Installation Guide

2004-12-08 Thread Phillip Lord
I was fiddling around with JDEE at home last night, and I noticed that the installation guide is actually not included with the download bundle. As my internet connection was hosed at the time this was a little bit of a pain. Not a major pain, as I know how to install JDEE, but none the less.

Re: Investigating quickfix functionality

2004-11-29 Thread Phillip Lord
Kai == Kai Grossjohann [EMAIL PROTECTED] writes: Kai I had been using Eclipse for some time a year ago. One thing I Kai really liked about it was the quickfix functionality. When the Kai compiler found an error in your source code, you could hit Kai Ctrl+1 to pop up a little menu which

Re: [jde] Re: refactoring in jdee

2004-10-01 Thread Phillip Lord
Raul == Raul Acevedo [EMAIL PROTECTED] writes: Raul On Thu, 2004-09-30 at 13:58 -0400, Matt Kurjanowicz wrote: The ability to change class names as well would be awesome :) Raul Yes, that would be cool also. In terms of priority, I'd Raul rather see variable and method refactoring

Re: Suggestion: jde-run-application-class

2004-03-25 Thread Phillip Lord
Jayakrishnan == Jayakrishnan Nair [EMAIL PROTECTED] writes: Jayakrishnan Hi, Jayakrishnan While writing a large program, I put public static Jayakrishnan void main() in different classes, so that I can run Jayakrishnan them independently. If I need to switch the main Jayakrishnan

Re: Constructor, enumeration templates and functions

2004-03-23 Thread Phillip Lord
Paul == Paul Landes [EMAIL PROTECTED] writes: Paul Phillip Lord writes: It's possible to do this using a super class. I use the class following. Paul This is one approach. Both have their advantages and Paul disadvantages. It might be a bad idea to use inheritance for Paul

Re: Constructor, enumeration templates and functions

2004-03-22 Thread Phillip Lord
it will no longer produce compiler * errors as they should. * * Created: Mon Feb 21 14:11:41 2000 * * @author Phillip Lord * @version $Id: AbstractEnumeration.java,v 1.1 2004/02/27 14:26:36 lordp Exp $ */ public abstract class AbstractEnumeration implements Serializable { // A linked list of all

Re: jde-import-all

2004-03-15 Thread Phillip Lord
at least checks for return types. I've re-worked the bulk import removal also. Cheers Phil ;;; jde-import-all.el --- Import everything at once. ;; Copyright (C) 2004 Phillip Lord ;; Author: Phillip Lord [EMAIL PROTECTED] ;; COPYRIGHT NOTICE ;; ;; This program is free software; you can

Re: jde-import-all

2004-03-15 Thread Phillip Lord
Paul == Paul Kinnucan [EMAIL PROTECTED] writes: Paul Phillip Lord writes: Here is the latest version of jde-import-all, which works with jde-2.3.3. Paul Hi Philip, Paul How about leveraging semantic to find a candidate list of Paul classes to import? The following function

Re: jde-import-all

2004-03-12 Thread Phillip Lord
Here is the latest version of jde-import-all, which works with jde-2.3.3. Cheers Phil ;;; jde-import-all.el --- Import everything at once. ;; Copyright (C) 2004 Phillip Lord ;; Author: Phillip Lord [EMAIL PROTECTED] ;; COPYRIGHT NOTICE ;; ;; This program is free software; you can

Re: jde-import-all

2004-03-12 Thread Phillip Lord
Petter == Petter Måhlén [EMAIL PROTECTED] writes: Petter This looks like something I would use a lot, although I Petter haven't tried it yet. I'll give it a shot when I have the Petter time. I'm find it very useful. Petter Love the comment to jde-import-all-kill-extra-imports :) I'm

Re: jde-import-all

2004-03-12 Thread Phillip Lord
Petter == Petter Måhlén [EMAIL PROTECTED] writes: Petter I've tested this a bit now, and I really like it. I have Petter found one slight problem, and I have one request for a Petter possible improvement: Petter 1. It doesn't detect the need to import List with the Petterfollowing

Re: jde-import-all

2004-03-12 Thread Phillip Lord
Petter == Petter Måhlén [EMAIL PROTECTED] writes: Petter Found another little nit to pick. I have a class named Petter Task, and when I run jde-import-all for that class, I am Petter prompted to import some class named sun.something.Task. I am Petter not enough of an elisp person to see

Re: speeding up variable loading

2004-02-16 Thread Phillip Lord
Paul == Paul Kinnucan [EMAIL PROTECTED] writes: I've had a go at implementing the first solution. The second one is a little more wide ranging and I think would have unexpected consequences. For instance using buffer-local variables would mean that you could not disable context

Re: speeding up variable loading

2004-02-16 Thread Phillip Lord
Paul == Paul Kinnucan [EMAIL PROTECTED] writes: On the second topic, that is removing jde-save-project as a command, I would disagree. I partially generate my project file using an ant task that I have written, and so I use jde-save-project to create a skeleton. Having said this, I

Re: speeding up variable loading

2004-02-10 Thread Phillip Lord
Paul == Paul Kinnucan [EMAIL PROTECTED] writes: This will also make it easy for third parties to piggy back into the JDE project system I think, without having to use the jde- namespace which the system currently depends on. I'd be quite happy to give this a go if you'd like.

Re: speeding up variable loading

2004-02-09 Thread Phillip Lord
Paul == Paul Kinnucan [EMAIL PROTECTED] writes: I have thought of one occasion when this will work differently from as now. Possibly better, possibly worse. If you have just set a variable using customise, but not saved it, and then you switch projects, it will not get reset to

Re: speeding up variable loading

2004-02-09 Thread Phillip Lord
Paul == Paul Kinnucan [EMAIL PROTECTED] writes: I thought about this solution. It has the minor disadvantage that it will not work for non JDE variables that use the JDE namespace to piggy back into the project file mechanism. I seem to remember having used this in the past when I

Re: Clicking from exceptions to source lines

2003-10-23 Thread Phillip Lord
Paul == Paul Kinnucan [EMAIL PROTECTED] writes: Paul Charles Sutton writes: Hi, If an application I'm running prints out the stack trace of an exception, is there a command that will parse the stack track trace output and bring up the relevant source line in a buffer (similar

Re: JDEE and Ant and paths

2003-09-12 Thread Phillip Lord
Paul == Paul Kinnucan [EMAIL PROTECTED] writes: Paul Phillip Lord writes: Kai == Kai Großjohann [EMAIL PROTECTED] writes: Kai I have some lengthy class path statements for compilation in Kai build.xml, and I thought it would be cool if JDEE could make Kai use of that for C-c C-v C

Re: JDEE and Ant and paths

2003-09-09 Thread Phillip Lord
Kai == Kai Großjohann [EMAIL PROTECTED] writes: Kai I have some lengthy class path statements for compilation in Kai build.xml, and I thought it would be cool if JDEE could make Kai use of that for C-c C-v C-z and friends. Then I wouldn't have Kai to update the paths in two places. --

ant and JDEE prj.el files

2003-03-19 Thread Phillip Lord
I was wondering if anyone had done any work on integrating JDE prj.el files and ant. I would quite like JDEE to pick up various options (well mostly the classpath!) as it has been set by ant. The calculation of this in ant is currently fairly involved, and its a pain to have to duplicate this

Re: jde-open-class-at-point on import statements

2003-03-19 Thread Phillip Lord
Herve == =?windows-1252?Q?Herv=E9 Bitteur?= windows-1252 writes: Herve Hello, Herve The behavior of jde-open-class-at-point (bound do C-c C-v Herve C-y) is strange when the point is on the following statement: Herve import java.util.Collection; ..^ Point Herve

Re: Why the JDEE?

2003-02-24 Thread Phillip Lord
Paul == Paul Kinnucan [EMAIL PROTECTED] writes: Paul It also allows users who are, like myself, working in a Paul multilanguage environment (e.g., C/C++/Java) to use a single Paul environment for all their work. This is my primary motivation for using emacs, and JDE for java. I use many

Re: JDEE plugins (was JUCI)

2003-02-19 Thread Phillip Lord
Paul == Paul Kinnucan [EMAIL PROTECTED] writes: Paul Hi Nick, Paul I am posting my response to your idea of JUCI-based plugins Paul to the JDEE list because I am interested in getting other Paul people's Paul input on this idea. This sounds like a thoroughly good idea to me. I've

Re: prj.el under source control

2002-11-20 Thread Phillip Lord
Nascif == Nascif Abousalh-Neto [EMAIL PROTECTED] writes: Nascif Hi, Nascif I recently added our prj.el files to source control Nascif (clearcase) but soon after that I start to get some strange Nascif behavior - basically related to loss of customizations, like Nascif modeline,

Re: prj file and moving project

2002-10-31 Thread Phillip Lord
Heinz-Dieter == Heinz-Dieter Conradi [EMAIL PROTECTED] writes: Heinz-Dieter hi all, Heinz-Dieter i occassionally move project between computers or make Heinz-Dieter a test copy into a different location. what always Heinz-Dieter irrates me about this process is the prj.el file.

Re: JDEE and emacs-wiki

2002-10-29 Thread Phillip Lord
Daniel == Daniel Serodio [EMAIL PROTECTED] writes: Daniel Well, I've found some more info on this error. emacs-wiki Daniel defines a line-beginning-position function with 1 optional Daniel argument, and jde-bug defines a function with the same name Daniel but no arguments. Daniel In

Re: jde-open-class-at-point error?

2002-09-22 Thread Phillip Lord
Andreas == Andreas Vallen [EMAIL PROTECTED] writes: Andreas Hi Andreas I have some trouble trying to find out why Andreas 'jde-open-class-at-point' does not work as it should. I get Andreas the error-message: Can not parse the thing at point when Andreas applying the function to the

Re: Javadoc comments

2002-09-12 Thread Phillip Lord
Nick == Nick Sieger [EMAIL PROTECTED] writes: Nick Thanks for the nifty code, Klaus. Your `my-cc-mode-return' Nick function led me to wonder if there was a way to make Nick auto-fill/filladapt obey string semantics. It'd be slick if Nick hitting space after the fill-column would close

augmenting prj.el with hand crafted code

2002-06-10 Thread Phillip Lord
Is there anyway to augment the prj.el with hand written lisp? I have tried writing lisp directly into the prj.el file, but this doesn't work well for two reasons. Firstly JDE keeps on kill the buffer after project switching. Secondly for reasons I have not quite worked out yet, it seems to

Re: Why JDEE ?

2002-02-25 Thread Phillip Lord
Troy == Troy Daniels [EMAIL PROTECTED] writes: Troy At 01:30 PM 2/25/02 -0500, Paul Kinnucan wrote: John Cobo writes: Paul, Am I correct in thinking that your JDEE allows a single set up of the JDK, Emacs, Tomcat, Web server, any shared JAR, WAR files for the development

Re: Whay is JDE/Xemacs startup so slow?

2002-01-29 Thread Phillip Lord
Michael == Altmann, Michael [EMAIL PROTECTED] writes: Michael Do other people find that it takes 20 secs to load jde? Michael This seems excessively long. I am running xemacs 21.1 on a Michael solaris server box (I'm not sure its exact speed). Without Michael jde it takes just a

Re: compiling packages

2002-01-11 Thread Phillip Lord
Paul == Paul Kinnucan [EMAIL PROTECTED] writes: Paul Phillip Lord writes: In my experience ant is generally quicker because it launches all compiles from a single JVM, while make will tend to launch javac for each out of date file, which means multiple JVM invocations. Paul

Re: compiling packages

2002-01-10 Thread Phillip Lord
Madeleine == Arnold, Madeleine [EMAIL PROTECTED] writes: Madeleine Hi there I'm a JDE newbie of 2 days. Can anyone help with Madeleine this question: Is there a way in JDE to compile all Madeleine classes within a particular package? I've found the build Madeleine command that calls

Re: best features of jde

2001-12-12 Thread Phillip Lord
Stephane == Stephane [EMAIL PROTECTED] writes: Stephane I plan to give a coure about jde and to introduce this IDE Stephane to my new pupills next january. What would you show to Stephane emacs-beginners ? What are your favorites jde's features I find automatic documentation

Re: [ANNOUNCE] XSLT-process 2.0 available

2001-06-22 Thread Phillip Lord
I haven't used either of them yet, but it looks to me like this package has a lot of overlap with the XAE which Paul has written. Are there plans to merge the two? Phil

Extending the java syntax

2001-05-31 Thread Phillip Lord
I was just wondering whether there were any plans to modify the JDE to cope with the extended Java syntax found in the new genericity proposal. http://java.sun.com/aboutJava/communityprocess/review/jsr014/index.html Phil

Re: Turing auto gen off in comments

2001-05-23 Thread Phillip Lord
Stephen == Molitor, Stephen [EMAIL PROTECTED] writes: Stephen Is there any way to turn auto code generation off in Stephen comments? For example, when I type 'If' at the beginning Stephen of a sentence in a comment, it gets automatically converted Stephen to lower case 'if', and I

Re: ANN: JDE 2.2.7beta7 available at ...

2001-04-17 Thread Phillip Lord
"Paul" == Paul Kinnucan [EMAIL PROTECTED] writes: Paul At 10:31 AM 4/14/2001 -0700, you wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Paul Kinnucan [EMAIL PROTECTED] writes: snip * If'ed out fontifying exception stack trace in run buffer when running in XEmacs. This is

Re: GDB for Debugging Java Programs

2001-03-01 Thread Phillip Lord
"Nic" == Nic Ferrier [EMAIL PROTECTED] writes: Matthew G Knepley [EMAIL PROTECTED] 28-Feb-01 5:23:29 PM I believe that the docs are refering to gcj which is a GNU layer on top of gcc that can compile byte code to the GNU IR which is subsequently compiled by gcc. The drawback

feature proposal for jde-run

2001-03-01 Thread Phillip Lord
Knut I think it would be a good idea if jde-run accepted the Knut universal argument, which would cause jde-run to prompt me Knut what class to run with a default of the public class in the Knut current buffer, and jde-run w/o the universal argument would Knut work as before, using

Re: JDE 2.2.7beta2 available at ...

2001-02-26 Thread Phillip Lord
"Jeff" == Jeff Rancier [EMAIL PROTECTED] writes: Jeff Paul, Jeff Could it be a difficult addition to see from the JDE-Help Jeff menu to view the current versions of the required sub-packages Jeff as well as the JDE's version? E.g. Perhaps it might even be possible to have

Re: Generating import statements automatically?

2001-02-14 Thread Phillip Lord
"T" == T V Raman [EMAIL PROTECTED] writes: T JDE never ceases to amaze me --(whine , whine) too much good T stuff hidden under menus-- guess you never win:-) T Would be even nicer if it handed the java file to bsh --found T what symbols didn't resolve, and then invoked the import