If multiple java classes (in different packages) have the same name,
only one of them appears in the documentation.
Example:
in file uk/co/greenius/oneModule/commonName.java
package uk.co.greenius.oneModule;
/// brief description of this class
class commonName
{
}
and in file uk/co/greenius/anotherModule/commonName.java
package uk.co.greenius.anotherModule;
/// different description
class commonName
{
}
in the documentation, the class commonName only appears in the oneModule
package. (note: the equivilant C++ case of classes in different
namespaces appears to be handled correctly, with the class also
appearing multiple times in the alphabetical index)
I'm using doxygen version 1.1.12, generating HTML output, and also
using the DOT tool for inheritance and collaboration diagrams.
Edmund.
|