MopeSWTP-SS21 / MopeSWTP

MIT License
1 stars 0 forks source link

Use a proper namespace for java packages #67

Open CSchoel opened 3 years ago

CSchoel commented 3 years ago

Currently, the project seems to use two toplevel packages called Client and Server. This bad, because it breaks the java package naming conventions.

Package names are written in all lower case to avoid conflict with the names of classes or interfaces.

Companies use their reversed Internet domain name to begin their package names—for example, com.example.mypackage for a package named mypackage created by a programmer at example.com.

I would therefore suggest a namespace such as de.thm.mni.swtp.mope, which should be fairly unique.

CSchoel commented 3 years ago

Again, @manuEbg , feel free to delegate this.