| Summary: | Only one Javadoc for overloaded methods with same argument class name is shown in content assist | ||
|---|---|---|---|
| Product: | [Eclipse Project] JDT | Reporter: | Bill Chen <billc.cn> |
| Component: | UI | Assignee: | JDT-UI-Inbox <jdt-ui-inbox> |
| Status: | CLOSED WONTFIX | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | ||
| Version: | 4.5 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows 7 | ||
| Whiteboard: | stalebug | ||
This bug hasn't had any activity in quite some time. Maybe the problem got resolved, was a duplicate of something else, or became less pressing for some reason - or maybe it's still relevant but just hasn't been looked at yet. As such, we're closing this bug. If you have further information on the current state of the bug, please add it and reopen this bug. The information can be, for example, that the problem still occurs, that you still want the feature, that more information is needed, or that the bug is (for whatever reason) no longer relevant. -- The automated Eclipse Genie. |
The content assist pop-up seems to ignore the package portion of argument types and thus treat method overloads with different types the same when showing JavaDocs. Example class: public class Example { /** confusing(Example.Object o) */ public void confusing(Example.Object o){ } /** confusing(java.lang.Object o) */ public void confusing(java.lang.Object o){ } void which() { confu // Ctrl-space here } class Object{ } } Real life example: Spring security [1] has two methods with the apparent signature "passwordEncoder(PasswordEncoder)" but only the JavaDoc of one is shown [1] http://docs.spring.io/spring-security/site/docs/4.0.2.RELEASE/apidocs/org/springframework/security/config/annotation/authentication/configurers/ldap/LdapAuthenticationProviderConfigurer.html