vote up 2 vote down star

Whenever I create a new Java file in Eclipse and check off the option to add public static void main(String args[]), this code is generated:

public class Test {

    /**
     * @param args
     */
    public static void main(String[] args) {
    	// TODO Auto-generated method stub

    }

}

How do i:

  • Remove the @param args comment
  • Change the indentation so each { is on a line of its own
  • Remove the TODO auto generated comment
flag

4 Answers

vote up 6 vote down check

The indention is a formatting issue while the comments is a template issue.

The templates are in Window -> Preferences -> Java -> Code Style -> Code Templates. Browse all of them and look for the things you would like to change.

The Formatter is a little bit more complicated. You find it under Window -> Preferences -> Java -> Code Style -> Formatter. There are tons of options there but I'll just answer your question.

  • Templates -> Comments -> Methods -> Edit and delete everything
  • Formatter -> Edit -> Braces Tab -> Change which situations you want
  • Templates -> Code -> Method Body -> Edit and delete everything
link|flag
vote up 0 vote down

Eclipse has a lot of configuration options. Take a look in the Windows | Preferences dialog (or the Eclipse Preferences pan on OSX).

If you dig deep enough - you'll find the options under Java | Code Style.

link|flag
Already looked there but its the identation for brackets i'm having trouble with – Click Upvote Feb 1 at 22:07
vote up 1 vote down

To configure it go to the : window->preferences->java->code style->code templates

link|flag
vote up 0 vote down

Also make sure you check "Use code formatter" in Java > Editor > Templates

link|flag

Your Answer

Get an OpenID
or

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