Going by the Java Tutorial for package naming convention if I were to use the following approach:
org.example.hyphenated_name.user
org.example.hyphenated_name.product
How would this translate to actually creating this package structure. Would I create a separate package for org
then within org
would i create example
and so on or would it just be 2 packages org.example.hyphenated_name.user
and org.example.hyphenated_name.product
Basically what I'm wondering is if the .
is just used for naming separation or if it's used to mean physically creating a new package each time.