JChassis Coding and Javadoc Convention
Author: Sam Stainsby
Coding conventions
The coding convention fore JChassis will be
Sun's Java coding convention with the following restrictions:
- TAB characters will not be used in source code - indents of 4 space
characters will be used
- the use of "a = a + b" format will be preferred to "a += b" for
clarity - the same applies to -=, <<=, etc ...
- member fields will always be prefixed by "this." to distinguish them
from local variables
Javadoc conventions
The javadoc convention for JChassis consist of:
Copyright © 2002 Sam Stainsby.
All rights reserved. Verbatim copying and distribution of
this entire document is permitted in any medium, provided
this notice is preserved.
$Id: coding_conventions.html,v 1.3 2003/05/23 23:53:16 stainsby Exp $