Eclipse formatter for java ending braces -
i know if it's possible setup eclipse format braces using banner style. we're working code uses banner style formatting , keep consistent within team version control reasons. here's example of banner style formatting not familiar:
public class foo { //------------------------ public static void main (string[] args) { boolean condition = true; try { if (condition) { system.out.println ("condition true"); } else system.out.println ("not condition"); } catch (exception ex) { // handle errors } } //------------------------ }
update: name style ratliff.
experiment java->code style->formatter preferences. "banner style" seems poor use of space given outline view , quick outline functionality.
Comments
Post a Comment