Re: How can i got a good jsp specific editor and how can i subscribe to good jsp-interest mailing list ?

2001-07-27 Thread Gian Uberto Lauri
JR == Jeff Rancier [EMAIL PROTECTED] writes: JR Where can i got a good jsp specific editor and how can i JR subscribe to good jsp-interest mailing list ? html-helper-mode + jde ? Gian Uberto Lauri Bloody instructions which, being taught, [EMAIL PROTECTED]

Re: Oops Re: NEWBIE trying to load JDE

2001-07-27 Thread Shashank
I have posted this question earlier as well, but :: How to stop multiple :specifically second instance of same file coming up in buffer:: actually all the edtions done are hold by this new buffer , so that many a times I have closed this buffer and lost the changes,\ q: to make single instance

Re: auto-gen get/set pairs for existing class variables

2001-07-27 Thread Daniel Hegyi
Please, as Max suggests, make this only an _option_, because I like the automatically generated javadocs! Daniel All of this sounds great, but I have one small suggestion/question :) Is it not possible to optionally disable the generation of the javadoc comments for these set/gets methods ?

limiting line length

2001-07-27 Thread Molitor, Stephen
This may be more of a Emacs than a JDE question, but... We have a coding standard that says lines shall not be more than 80 characters long. Is there any way to limit the line length some how? Maybe by automatically wrapping after x characters? Or maybe just vertical line down the screen at

RE: limiting line length

2001-07-27 Thread Molitor, Stephen
Duh! Thanks! Steve -Original Message- From: Javier Lopez [mailto:[EMAIL PROTECTED]] Sent: Friday, July 27, 2001 11:10 AM To: Molitor, Stephen; [EMAIL PROTECTED] Subject: RE: limiting line length Try M-x auto-fill-mode Javier -Original Message- From: Molitor, Stephen

RE: auto-gen get/set pairs for existing class variables

2001-07-27 Thread Sandip Chitale
Well the jde-wiz-get-set-methods simply calls the existing jde-wiz-get-get-method and jde-wiz-get-set-method functions. If the option is introduced it will be for those. -sandip -Original Message- From: Max Rydahl Andersen [mailto:[EMAIL PROTECTED]] Sent: Friday, July 27, 2001 2:36

Re: limiting line length

2001-07-27 Thread aaron
At Fri, 27 Jul 2001 11:04:33 -0500, Molitor, Stephen [EMAIL PROTECTED] wrote: Or maybe just vertical line down the screen at char 80 to let you know when a line is to long? Does anyone know of a way to do this? i would prefer to have a visable reminder which i can decide to ignore or beak the

RE: limiting line length

2001-07-27 Thread Sandip Chitale
In fact putting the following lines in .emacs ;; Highlight current line (require 'highline) (highline-mode-on) and the following lines in jde-mode-hook (make-variable-buffer-local 'highline-line) (setq highline-line (cons fill-column 240)) did the trick. -sandip -Original

[CONTRIB] jde-import-expand-imports

2001-07-27 Thread burtonator
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 (defun jde-import-expand-imports() Search a java buffer for duplicate explicit imports and replace them with a package import. Example: If you have following source: import org.jdom.Document; import org.jdom.Element; It will be replace with