Code Style|Work In Progress

Please consider different settings for "extends" and "implements". For
example we write the extends on the same line, but implements on the
next line, e.g.:

public class MyClass extends MySuperClass
implements MyInterface {
}

Thanks,
Tom

0
Avatar
Permanently deleted user

Thomas Singer wrote:

Please consider different settings for "extends" and "implements". For
example we write the extends on the same line, but implements on the
next line, e.g.:

public class MyClass extends MySuperClass
implements MyInterface {
}


You don't line the implements up with the extends?

Jon

0
Avatar
Permanently deleted user

No, it's just indented.

Tom

0
Avatar
Permanently deleted user

Thomas Singer wrote:

No, it's just indented.


If they are going to add this capability, I'd want the option to line up
the extends and implements.

Jon

0

请先登录再写评论。