Coding guidelines
Revision as of 11:53, 16 October 2012 by Herret (talk | contribs) (Created page with " == General Conventions == #Comment your code (documentation_guidelines9 #One File - One Class #Don't add packages with a wildcard (e.g. java.lang.* - instead always type ...")
General Conventions
- Comment your code (documentation_guidelines9
- One File - One Class
- Don't add packages with a wildcard (e.g. java.lang.* - instead always type the whole package name java.lang.Integer)
- Produce readable code
- Produce efficient code (in this order - first readability, then efficiency)