Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have Netbeans 7. When I have it generate my getters and setters it does:

public void foo() {
}

Whereas I need it to do:

  public void foo() 
  {
  }

Where the starting brace is on the next line.

The same thing happens when I use Source->Format, I need the method brace on the next line.

Is there a way to set this?

Thanks

share|improve this question

2 Answers

up vote 3 down vote accepted

From the main menu bar,

  • select tools then options,
  • click on the editor icon,
  • select the formatting tab,
  • select java on the language drop down list
  • and select braces from the category drop down list.

Then select new line for the item method declaration in the braces placement group.

share|improve this answer

Tools->Options->Editor->Formatting->Java->Braces

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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