I'm not quite sure how I'm supposed to document Java packages using Doxygen. In C++ you could simply describe a namespace as it's declared but Java packages are never really explicitly declared. I tried adding a description before the package mypackage.subpackage; declaration but to no avail. What I found that sort of works is if I were to make a new file and simply do
/**
@namespace mypackage.subpackage
@brief my description
*/
it would show up on the wiki, but it's strange because some of the packages are described correctly, and the rest are duplicated (the package to be described isn't described, instead another package that's empty and has the same name is created)
Does anyone know the correct way to describing a Java package in Doxygen?