Jutil.org : programming as you know it is over


Table of Contents
Home
Contact
Documentation
Links
News
Features
Download
Javadoc API

Documentation
Coding Style
Compiling the code
How to contribute
CVS
Javadoc API
Mailing lists
License
Quality levels

Coding Style
Text style for the code
Design style for the code
Text style for the specification
Design style for the code

Instance variables

All instance variables must be private.

Mutators and inspectors

Mutators and inspectors should not be mixed. So a method with a return-type that is not void may not produce side effects. In rare cases, where it increases the usability of the code, an inspector may have side effects.