In any open source project it is important that all contributors use the same coding style. Otherwise the code ends up being a big mess.
Therefor we agreed on a few simple rules:
camelCase
With the exception of global constants(static final
):
UPPERCASE_WITH_UNDERSCORE
lowercase_with_underscore
CapitalCamelCase
- Tabs for Indentation, Spaces for alignment.