// This rule sets the allowed line length
// If the line is longer then break it into several lines.
// Most IDEs support longer lines // but make code harder
// to read. You have to scroll in order to see the full
// line of code. Below is a list of examples of how you can
// break the code into different lines:

...
LongClassName vlcn = new LongClassName(firstParameter,

                                       secondParameter,
                                       thirdParameter);
...
public class TestClass(StringBuffer buffer,
                       int index,
                       Enumeration enumeration)
...
if (! ((Iface) mdl.getValueAt(tbl.getSelectedRow(),
                              tbl.getSelectedColumn()))
                                .isEmpty() &&
               mdl.isRowLoaded(tbl.getSelectedRow()))
...

         
// Emacs and JDE(E) are IMHO the best tools for code
// indenting
http://jdee.sunsite.dk/