HTML tables for "throws"
The JBuilder's Javadoc generator doesn't generate HTML tables for the exceptions, though it does for the return values. E. g., this code doesn't work:
* @throws <table border="1">
* <tr>
* <td>...</td>
* <td>...</td>
* </tr>
* </table>
Whereas this one does:
* @return <table border="1">
* <tr>
* <td>...</td>
* <td>...</td>
* </tr>
* </table>
Is that the JavaDoc sdandard or just a JBuilder's bug?
|