Coding Guidelines
What do we want for the coding outlines/layout?
These are open to discussion
General
Do not use abbreviations
For Java
Use javaDoc comments
Keep properties private - use get and set methods
Like this?
this.is.a.package
ThisIsAClass
THIS_IS_A_CONSTANT
thisIsAMethod()
thisIsAVariable
public void setSomething(String Something)
{
this.something = something
[tab] if(this.else)
{
[tab] somethingElse();
}
}
Package naming - maybe something like ca.gridx1.sp.[package name]
--
ChrisUsher - 21 Mar 2006