Xcode 11: Add Documentation in Javadoc style?

I love Xcode 11, great job! However, I am wondering if "Add Documentation" can be configured to generate comments in javadoc – doxygen's default format. Also, it does not seem to generate the @return statement for C++ code.


E.g.


/**
 * Short one line description. (1)
 * <p>
 * Longer description. If there were any, it would be (2)
 * here.
 * </p>
 * And even more explanations to follow in consecutive
 * paragraphs separated by HTML paragraph breaks.
 *
 * @param variable Description text text text. (3)
 * @return Description text text text.
 */


Javadoc: https://en.wikipedia.org/wiki/Javadoc