doxygen - Does javadoc support other comment styles? -
i have been working in c++ project uses doxygen generate documentation output. method of documentation use looks this:
//! awesome method. should totally use method sorts //! of cool stuff might want do. //! @returns useful string my_awesome_method() {...} as can see, use //! comment prefix indicate doxygen comment block. have found works our needs.
now adding java component , maintain consistency commenting style have used in c++ rather move the, consider awkward, /** */ style used javadocs. there way javadocs recognize other prefixes doxygen does? or javadocs require use of /** */? use doxygen, there sorts of niceties built around javadocs such maintain interface ecosystem.
is possible? i'm afraid answer no. :(
yes, /** */ comment format recognized javadoc. see http://www.oracle.com/technetwork/java/javase/documentation/index-137868.html#format.
Comments
Post a Comment