Skip to content

Latest commit

 

History

History
executable file
·
12 lines (10 loc) · 275 Bytes

package-naming.md

File metadata and controls

executable file
·
12 lines (10 loc) · 275 Bytes

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 {  
    ...
}