views:

121

answers:

1

Is there any way to change indentation style for automatically generated code in Eclipse? I'd like to change from

class Test {
blah blah
}

to

  class Test 
  {
  blah blah
  }
+2  A: 

If you do change the format of the brace, all new class will be generated according to that new format:

alt text

VonC
Thanks a lot! A spent ages looking for that.
AndrejaKo