Bug 205033 - [assist] Propose method declarations when the cursor is inside a parameter type
Summary: [assist] Propose method declarations when the cursor is inside a parameter type
Status: NEW
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 3.3   Edit
Hardware: PC Windows XP
: P3 enhancement (vote)
Target Milestone: ---   Edit
Assignee: David Audel CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-10-01 07:50 EDT by David Audel CLA
Modified: 2007-10-01 07:51 EDT (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description David Audel CLA 2007-10-01 07:50:25 EDT
build I20070925-1406

class MyVisitor extends org.eclipse.jdt.internal.compiler.ASTVisitor {
   visit| // complete at |
}

In this case a lot of method declarations are proposed and it is difficult to select the proposals which aren't at the beginning of the list.

To solve this problem we could propose method declarations when the cursor is inside a parameter type.

class MyVisitor extends ASTVisitor {
  visit(Wi|
}

It would take into account only the first parameter but it would be enough to solve most of the cases.