| Summary: | [assist][javadoc] content assist in Javadoc offers proposals of wrong type | ||
|---|---|---|---|
| Product: | [Eclipse Project] JDT | Reporter: | Martin Aeschlimann <martinae> |
| Component: | Core | Assignee: | Ayushman Jain <amj87.iitr> |
| Status: | CLOSED WONTFIX | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | frederic_fusier, srikanth_sankaran |
| Version: | 3.3 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | stalebug | ||
Ayush, please follow up, possible duplicate of bug#255936 ? 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. If you have further information on the current state of the bug, please add it. 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. |
20071122 - do a code assist after '{@link #' - you will see method proposals from the type 'Inner' (foo()), but not from A ('bar()'). The methods from 'Inner' are not visible at that location. package a; public class A { class Inner { public void foo() { } } /** * {@link # */ public A() { } public void bar() { } }