|
From: Bill B. <bb...@re...> - 2008-06-26 19:07:02
|
Mind if we follow the JBoss Code Format Guidelines? All my code
currently follows it:
* Fully qualified imports should be used, rather than importing x.y.*.
* Use newlines for opening braces, so that the top and bottom braces can
be visually matched.
* 3 space indentation (no tabs!)
* Each method, field, and class annotation on their own line
import org.jboss.foo;
public class CodingConventions
{
@Hello
@World
private int field;
@Hello
@World
public void yo()
{
if
{
yo;
}
else
{
foo;
}
}
}
--
Bill Burke
JBoss, a division of Red Hat
http://bill.burkecentral.com
|