JavaDoc issue: @see tags not displaying properly
843810Aug 11 2006 — edited Sep 20 2006I am having a very odd issue that I cannot seem to figure out. I am trying to add the following lines to a comment on a specific method:
@see javax.mail.internet.MimeMessage#setSubject(java.lang.String)
@see java.util.Properties#getProperty(java.lang.String)
My problem is, when the html is generated...it shows
See also:
MimeMessage, Properties.getProperty(java.lang.String)
I have both the J2SE and J2EE documentation linked so that these are linked to the source api on sun's site. When I click on MimeMessage it does send me to the setSubject() method within the MimeMessage class. So why does it not show MimeMessage.setSubject(java.lang.String)? Instead it just shows the class name. And why does Properties.getProperty(java.lang.String) properly show on the documentation but the MimeMessage class does not show the specific method it is linking to?