Bug 277586

Summary: [quick assist] create * quick assist should propose overloaded parameter types in linked mode
Product: [Eclipse Project] JDT Reporter: Benjamin Muskalla <b.muskalla>
Component: UIAssignee: JDT-UI-Inbox <jdt-ui-inbox>
Status: ASSIGNED --- QA Contact:
Severity: enhancement    
Priority: P3 CC: daniel_megert
Version: 3.5   
Target Milestone: ---   
Hardware: All   
OS: All   
Whiteboard:

Description Benjamin Muskalla CLA 2009-05-23 18:28:36 EDT
I20090414-0800

Take the following snippet:

public class A {
	private void f() {
		System.out.println(foo);
	}
}

Quick fix for "foo" offers to create local variable, field, etc. The boxed type of the generated code (eg. char[] foo;) should offer the different types that are possible for "println" (eg. int, long, String, ...)