My code style cannot be set up in IDEA either
E.g. I prefer

void a()
{
   // long method
}

but for just-a getter I do prefer

int getValue() { return value; }

to save a valueable screen space when there lots of getters/setters that just
eat it.
formatting like

int getValue1() { return value1; }
int getValue2() { return value2; }
int getValue3() { return value3; }
int getValue4() { return value4; }

even without blank line between them is OK for getters/setters,
while the rest is good-looking like

void a()
{
   // long method
}

Code folding can help it but it's still possible to be like this...
table-like alignment could also be there...

_______________________________________________
Eap-features mailing list
[EMAIL PROTECTED]
http://lists.jetbrains.com/mailman/listinfo/eap-features

Reply via email to