How to change Eclipse indentation style for automatically generated code?
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
}
If you do change the format of the brace, all new class will be generated according to that new format:
It's in "Window | Preferences" in the latest eclipse.
精彩评论