You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@netbeans.apache.org by GitBox <gi...@apache.org> on 2020/04/11 10:22:12 UTC

[GitHub] [netbeans] dmochalov commented on issue #2047: [NETBEANS-4070] fixed JavaDoc in tooltip (ctrl+mouse hover) duplicate…

dmochalov commented on issue #2047: [NETBEANS-4070] fixed JavaDoc in tooltip (ctrl+mouse hover) duplicate…
URL: https://github.com/apache/netbeans/pull/2047#issuecomment-612386680
 
 
   @eirikbakke thank you for taking time to review it.
   
   Indeed Javadoc handles it differently. It does not include the Javadoc of a parent method. Also, I checked the Eclipse's tooltip - it doesn't include the parent Javadoc at all.
   But in the NetBeans, there is a whole bunch of code to handle it. The bug here is just how NetBeans combines a description of parameters.
   Before fixing NetBeans dose it in that way:
   
   ![image](https://user-images.githubusercontent.com/1295142/79040991-020f9100-7bf5-11ea-88e6-164c7d7b40f1.png)
   
   i.e for the index it combines Javadoc both from parent and from the current method and does it a little awkwardly.
   for the c parameter, it only adds Javadoc from the parent method.
   
   After fixing NetBeans dose it in that way:
   ![image](https://user-images.githubusercontent.com/1295142/79041291-5b78bf80-7bf7-11ea-8643-f5b6ea516b3e.png)
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists