DocumentationExtraction works good when java docstyle as given below is used.
/**
* Returns an String that says Hello with the name argument.
*
* @param name the name to which to say hello
* @return the concatenated string
*/
But if we remove that one space from that mid marker and end marker as follows
/**
* Returns an String that says Hello with the name argument.
*
* @param name the name to which to say hello
* @return the concatenated string
*/
DocumentationExtraction doesn't return anything. We need to throw a nice warning message for the above case.
DocumentationExtraction works good when java docstyle as given below is used.
But if we remove that one space from that mid marker and end marker as follows
DocumentationExtraction doesn't return anything. We need to throw a nice warning message for the above case.