Is there a way to make Eclipse's built-in Java code formatter ignore comments? Whenever I run it, it turns this:

    /*
     * PSEUDOCODE
     * Read in user's string/paragraph
     * 
     * Three cases are possible
     * Case 1: foobar
     *         do case 1 things
     * Case 2: fred hacker
     *         do case 2 things
     * Case 3: cowboyneal
     *         do case 3 things
     *         
     * In all cases, do some other thing
     */

into this:

    /*
     * PSEUDOCODE Read in user's string/paragraph
     * 
     * Three cases are possible Case 1: foobar do case 1 things Case 2: fred
     * hacker do case 2 things Case 3: cowboyneal do case 3 things
     * 
     * In all cases, do some other thing
     */

I have already played around with the Windows > Preferences > Java > Code Style > Formatter settings but can't find one for keeping comment formatting. I'm using Eclipse 3.4.0.

link

as it is language-dependent... what language is this being written in? – Jonathan Fingland Jun 21 '09 at 22:33
It's right there in the Formatter config, I don't know how you're missing it. Edit the profile, there's a dialog box with 8 tabs, the last tab is for comment formatting. – skaffman Jun 21 '09 at 23:16
I do see the comment tab, but the formatting problems happen no matter what combination of checkboxes I use. – Lord Torgamus Jun 25 '09 at 1:42
feedback

5 Answers

up vote 5 down vote accepted

With the Java Formatter (Windows > Preferences > Java > Code Style > Formatter), you can create a new Formatter profile.

In the Comments tab (in eclipse3.5), you can make sure, in the "Javadoc comment settings", to uncheck "Format HTML tags".
Check also the "Never join lines" in the ""General settings" section.

Then your comment should be written as:

/**
 * PSEUDOCODE
 * Read in user's string/paragraph
 * 
 * Three cases are possible:
 * <dl>
 * <df>Case 1: foobar</df>
 * <dd>        do case 1 things</dd>
 * <df>Case 2: fred hacker</df>
 * <dd>        do case 2 things</dd>
 * <df>Case 3: cowboyneal</df>
 * <dd>        do case 3 things</dd>
 * </dl>        
 * In all cases, do some other thing
 */

Note: I have made a Javadoc comment, and not a simple comment, as I believe a comment with that much text in it may be better placed in front of a method. Plus, Javadoc sections have more formatting parameters to play with.
If it is in front of a method (true Javadoc), the HTML tags <dl>, <df> and <dd> will help to present it properly within the Javadoc view.

link
The relevant part of this answer, for me, was that the HTML tags are NOT automatically inserted at line breaks and the like. Probably obvious to most, but I didn't realize I had to hand-code things like <br>s until I saw it here. – Lord Torgamus Jan 12 '10 at 16:00
@Lord Torgamus: not only you have to add thosetags, but the first sentence requires a periode and a space, before the <br />! (see bugs.sun.com/bugdatabase/view_bug.do?bug_id=4165985) – VonC Jan 12 '10 at 16:14
feedback

There is another solution that you can use to suppress the formatting of specific block comments. Use /*- (note the hyphen) at the beginning of the block comment, and the formatting won't be affected if you format the rest of the file.

/*-
 * Here is a block comment with some very special
 * formatting that I want indent(1) to ignore.
 *
 *    one
 *        two
 *            three
 */

Source: http://java.sun.com/docs/codeconv/html/CodeConventions.doc4.html

link
Never seen that before, even out of context. +1! – Lord Torgamus Mar 29 '11 at 2:19
I wish I had known about this (i.e., searched for the solution) earlier. – skrounge Nov 2 '11 at 19:48
1  
Sadly, this only works with "regular" block comments, not Javadoc comments. – Lord Torgamus Jan 11 at 3:19
feedback

Surround the specific text with <pre> </pre> tags.

link
feedback

In Eclipse 3.4: Preferences, Java->Code Style->Formatter, then edit profile, comments tab. There's a bunch of options there for controlling comment formatting.

link
feedback

It is language-dependent.

For example, if working with javascript, you would go to "Window -> Preferences -> Javascript -> Code Style -> Formatter" and then edit the formatter options.

Edit (reflecting changesin OP Questions

For editing java code formatting, go to "Window -> Preferences -> Java -> Code Style -> Formatter"

At the top of the panel you will see

Active Profile:
Eclipse [built-in]

From there you have one button to the right, "Edit", and two below, "New..." and "Import...". I would recommend Editing the existing profile.

In the edit profile dialog, there are a series of tabs along the top. The last tab is "Comments". To completely disable comment formatting, uncheck "Enable Javadoc comment formatting", "Enable block comment formatting", "Enable line comment formatting", and "Enable header comment formatting".

link
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.