Doxygen exclude getter and setter
is it possible 开发者_运维百科to configure Doxygen to exclude my getter and setter? We're using beans Extensivly, and for the internal documentation there is really no need to have the getter and setter visible every time. However, i'd like to keep
HIDE_UNDOC_MEMBERS = NO
as it's good to see what still needs documentation.
I thought that I could achive this with EXCLUDE_SYMBOLS, but till now I didn't succeed. Here's my try:EXCLUDE_SYMBOLS = */*::get*
I also tried *::get*
, */*::get*
etc, but none of these seemed to work. Any help is appriciated!
You can have a look at the \cond command ?
You will have to manually "tag" all of your files, but you will gain in granularity : if you create some kind of getter or setter that you want in the documentation, it will be possible.
精彩评论