Lew wrote:
Side notes:
- 'LOG' does not follow the Java coding conventions:
<http://java.sun.com/docs/codeconv/index.html>
Daniel Pitts wrote:
I'm curios about this..
private static final Logger LOG = ...;
It is private, static, and final: Which convention would you use?
Why, the one referenced in my post, natch. Surely you saw the reference;
you repeated it.
The names of variables declared class constants and of ANSI constants
should be all uppercase with words separated by underscores ("_")
otherwise they're in camel case with a lower-case first letter.
There's an apparent typo in the conventions spec, which confuses matters.
Except for variables, all instance, class, and class constants are in
mixed case with a lowercase first letter.
When clearly the intent is to say:
Except for class constants, all instance and class variables are in
mixed case with a lowercase first letter.