-
Some Very Basic Code Standards
2005-12-05 "Whilst on the topic of aggravation:
/** * Returns the url for the link * @return the url for the link * @param oFooUtil the foo util * @param sSomething the something * @param iAge the age */ public String getRelationPath(FooUtil oFooUtil, String sSomething, int iAge) { ... }
- Do not name your methods deceptively and keep the correct information in the javadoc only
- Do not use hungarian notation. It is extra useless in Java as it is an object oriented language which means that many, many variables will be prefixed with o.
- Do not comment the obvious