mOut.println("<DT><B>Returns:</B></DT>");
mOut.println("<DD>" + returnTags[0].text() + "</DD>");
}
// throws tag
ThrowsTag[] throwsTags = methodDoc.throwsTags();
if (throwsTags.length > 0) {
mOut.println("<DT><B>Throws:</B></DT>");
for (ThrowsTag throwsTag: throwsTags) {
String exceptionName = throwsTag.exceptionName();
// remove "com.qspin.qtaste.testsuite." prefix if any