Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 1.03 KB

java.md

File metadata and controls

27 lines (19 loc) · 1.03 KB

Java Coding Standards

In the main java code should follow Google's Java coding standards with the exceptions outlined below.

Indentation

Code blocks should be indented by four spaces rather than two as Google specifies. Note that four spaces also apply for indentation within a switch statement.

When line wrapping, the continuation lines should be indented by eight spaces rather than four as Google specifies.

Javadoc

In addition to the Google standards on javadoc do not use the @author tag as this is unwanted noise that provides no advantage over version control history.

Checkstyle

Checkstyle README