Feature Requests item #651646, was opened at 2002-12-10 13:24
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=438938&aid=651646&group_id=44253
Category: User interface
Group: None
Status: Open
Priority: 5
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: indentation options
Initial Comment:
It would be nice to have the option of using different
indenting styles. DrJava seems to be set up for the K
& R style, where the braces are NOT lined up vertically
(as shown below).
public class SomeClass {
//stuff
}
However, many introductory texts recommend lining them
up as shown below.
public class SomeClass
{
//stuff
}
or even
public class SomeClass
{ //stuff
}
I'd even settle for a system that didn't try to guess
how you wanted indentations, but remembered the last
indent level and stuck with it until you changed it.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=438938&aid=651646&group_id=44253
|