Re: Removing JavaDoc comments

2004-03-24 Thread David Ponce
Paul Landes wrote: Is there something that will remove JavaDoc code? I've looked but could only find `jde-javadoc-delete-documentation', which doesn't seem to do what I need. For instance, I want: /** * Return name. */ public String getName() { // perhaps comments here return na

Removing JavaDoc comments

2004-03-24 Thread Paul Landes
Is there something that will remove JavaDoc code? I've looked but could only find `jde-javadoc-delete-documentation', which doesn't seem to do what I need. For instance, I want: /** * Return name. */ public String getName() { // perhaps comments here return name; } to become

RE: formatting javadoc comments: start in front of every line after filling

2003-12-15 Thread Jeff Jensen
ginal Message- > From: Martin Monsorno [mailto:[EMAIL PROTECTED] > Sent: Monday, December 15, 2003 3:29 AM > To: [EMAIL PROTECTED] > Subject: formatting javadoc comments: start in front of every > line after > filling > > > Hi *, > > I found many info on this, but

Re: formatting javadoc comments: start in front of every line after filling

2003-12-15 Thread Jeffery B. Rancier
Martin Monsorno <[EMAIL PROTECTED]> writes: > Hi *, > > I found many info on this, but I was not able to find a solution :-( > > The problem is the following: when having a javadoc comment in a > java-file like this: > > , > | /** > | * bla bla bla bla bla bla bla bla bla bla bla bla bla bla

formatting javadoc comments: start in front of every line after filling

2003-12-15 Thread Martin Monsorno
Hi *, I found many info on this, but I was not able to find a solution :-( The problem is the following: when having a javadoc comment in a java-file like this: , | /** | * bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla | * ` I

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

RE: Javadoc comments

2002-09-12 Thread Nick Sieger
;; '[EMAIL PROTECTED] ' Subject: RE: Javadoc comments Hi! Smart ENTER in all cc-mode based major-modes (so also for jde-mode): Here is what i have bound to RET in my c-mode-common-hook (jde-mode inherits all thi

RE: Javadoc comments

2002-09-12 Thread Heinz-Dieter Conradi
hi, On Wed, 11 Sep 2002, Daniel Hegyi wrote: > > I know. However, is there a way of getting this functionality when starting > a new line (i.e., hitting ENTER)? I'd like to get an asterisk then as well. > > > > >I discovered by accident that if you turn on auto-fill-mode and begin > >typing with

Re: Javadoc comments

2002-09-12 Thread Guy Worthington
Thanks for posting your Java specific code Klaus, my .emacs is now packed to the gunwales with your cc-mode and tempo enhancements.

RE: Javadoc comments

2002-09-12 Thread Berndl, Klaus
d-pos ,bc-blocksize)) ;; the if-condition is only t if we are in a do-while-loop (if (memq 'before c-end-block-brace-newline) '(before) nil) c-end-block-brace-newline Works at least with cc-mode 5.28 and 5.27! Ciao

Re: Javadoc comments

2002-09-11 Thread Matthias Papesch
>And indent to the appropriate place within the comment. > > > >- david > > > >-original Message- > >From: Daniel Hegyi [mailto:[EMAIL PROTECTED]] > >Sent: Wednesday, September 11, 2002 4:23 PM > >To: [EMAIL PROTECTED] > >Subject: Javado

RE: Javadoc comments

2002-09-11 Thread Daniel Hegyi
nt, the line will automatically wrap, add an >asterisk, >and indent to the appropriate place within the comment. > >- david > >-Original Message- >From: Daniel Hegyi [mailto:[EMAIL PROTECTED]] >Sent: Wednesday, September 11, 2002 4:23 PM >To: [EMAIL PROTECTED] >Subject:

RE: Javadoc comments

2002-09-11 Thread McGaffin, David
: Wednesday, September 11, 2002 4:23 PM To: [EMAIL PROTECTED] Subject: Javadoc comments Hi, When I'm typing a javadoc comment I'd like to have every new line automatically start with an asterisk. How can I do this? Than

Javadoc comments

2002-09-11 Thread Daniel Hegyi
Hi, When I'm typing a javadoc comment I'd like to have every new line automatically start with an asterisk. How can I do this? Thanks, Daniel _ MSN Photos is the easiest way to share and print your photos: http://photos.msn.com/s

Re: AW: filling javadoc comments

2001-03-02 Thread eric
: Do you think it would be a good idea for the JDE : to require filladapt and set it up to do filling : correctly on Javadoc comments? Yes, please! Eric : : - Paul : : : At 01:01 PM 3/2/2001 +0100, you wrote: : >> take a look at filladapt-mode : >> http://cc-mode.sou

AW: AW: filling javadoc comments

2001-03-02 Thread klaus . berndl
ea and i´m sure you find the right way to do it :-) Klaus >Hi Klaus >Do you think it would be a good idea for the JDE >to require filladapt and set it up to do filling >correctly on Javadoc comments? >- Paul At 01:01 PM 3/2/2001 +0100, you wrote: >> take a

Re: AW: filling javadoc comments

2001-03-02 Thread Paul Kinnucan
Hi Klaus Do you think it would be a good idea for the JDE to require filladapt and set it up to do filling correctly on Javadoc comments? - Paul At 01:01 PM 3/2/2001 +0100, you wrote: >> take a look at filladapt-mode >> http://cc-mode.sourceforge.net/filladapt.php > >Yes

AW: filling javadoc comments

2001-03-02 Thread klaus . berndl
docs! Hope this helps, Klaus > -Original Message- > From: Martin Monsorno [SMTP:[EMAIL PROTECTED]] > Sent: Friday, March 02, 2001 11:57 AM > To: jde mailing list > Subject: filling javadoc comments > > I often use M-q inside of javadoc-comments to automati

RE: filling javadoc comments

2001-03-02 Thread wannhedenk
take a look at filladapt-mode http://cc-mode.sourceforge.net/filladapt.php -- knut > -Original Message- > From: Martin Monsorno [SMTP:[EMAIL PROTECTED]] > Sent: Friday, March 02, 2001 11:57 AM > To: jde mailing list > Subject: filling javadoc comments > > I

filling javadoc comments

2001-03-02 Thread Martin Monsorno
I often use M-q inside of javadoc-comments to automatically break long lines. The problem is: when I have this: @param id an id @return something useful the result is: @param id an id @return something useful Does anybody know how to prevent emacs from filling lines with tags