Java Naming Convention > Package Naming
dotted.case
- Should be all in lowercase letters such as util, lang
- If contains multiple words, it should be separated by dots (.) e.g. java.util, com.java.lang
package java.awt.event;
class Car
{
...
}