Re: [Doxygen-users] How to obtain fully qualified namespace in Java class names
Brought to you by:
dimitri
From: Dimitri v. H. <di...@st...> - 2003-10-31 13:30:00
|
On Fri, Oct 31, 2003 at 11:05:38AM +0100, Moreno Pasquato wrote: > I would like to know, if it is possible, in which way can be generated a > fully qualified namespace in Java class documentation. > I would like to know to which package a specific class belongs simply > checking > the class documentation. > > For example from the "Package List" > > ACS Package List > Here are the packages with brief descriptions (if available): > abeans.models.acs.baci > abeans.models.acs.baci.generator > abeans.models.acs.baci.util > abeans.models.acs.baci.util.async Doxygen already puts a fully qualified namespace in front of the class unless HIDE_SCOPE_NAMES is enabled. If you want a list of all packages you need to document them. Here is how this can be done: Add a dummy file packages.dox somewhere, with the following contents: --------------------------------------- /** @package abeans * Beans */ /** @package abeans.modules * Models */ /** @package abeans.modules.acs * ACS */ /** @package abeans.modules.acs.baci * Baci */ --------------------------------------- And make sure doxygen reads this file. I hope this helps, Regards, Dimitri |