Coding Conventions
We are loosely following the Oracle Code Conventions for the Java Programming Language.
Selection of rules:
- The code should be properly indented.
- Spaces should be used for for indentation (not tabs). The IDEs can be configured to use spaces.
Opening curly brackets,
{
, should not be on their own line. Example:CODEif (true) {
- First sentence in Javadoc should end with a period:
.