java - hide common package in doxygen output -
java - hide common package in doxygen output -
given packages foo.bar.project.something.firstmodule
foo.bar.project.something.secondmodule
, etc. have long foo.bar.project.something
in common. how tell doxygen hide (or @ to the lowest degree shorten) mutual bundle names , print firstmodule.someclass
, secondmodule.myinterface
in output?
you set hide_scope_names yes, strip firstmodule , secondmodule.
an alternative write simple input filter (see input_filter in doxygen config file) replaces "package foo.bar.project.something.amodule;" "package amodule;". have total command on how much stripped.
java doxygen
Comments
Post a Comment