Bug 277586 - [quick assist] create * quick assist should propose overloaded parameter types in linked mode
Summary: [quick assist] create * quick assist should propose overloaded parameter type...
Status: ASSIGNED
Alias: None
Product: JDT
Classification: Eclipse Project
Component: UI (show other bugs)
Version: 3.5   Edit
Hardware: All All
: P3 enhancement (vote)
Target Milestone: ---   Edit
Assignee: JDT-UI-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-05-23 18:28 EDT by Benjamin Muskalla CLA
Modified: 2009-05-25 04:49 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 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, ...)