In software development is a good recommendation to follow some naming conventions. The Java development community has several rules and in this project we get some of them.
Packages name convention should be in all lowercase, e.g. br.unifesp.maritaca.core.Form
The first letter should be capitalized, and, if several words are linked to form the name, the first letter of the inner words should be uppercase, this is known as "camelCase".
The first letter should be lowercase, and then normal camelCase rule should be used. In addition, the names should typically be verb-noun pairs: getForm, findUser
CamelCase format should be used, starting with lowercase letter. A variable should be short, meaningful names, e.g. buttonWidth, accountBalance.
Constants in Java are created by marking variables static and final. They should be named using uppercase letters with underscode characters as separators, e.g. MIN_LENGHT.