Bug 94285 - [quick fix] "Create method" should offer vararg param
Summary: [quick fix] "Create method" should offer vararg param
Status: ASSIGNED
Alias: None
Product: JDT
Classification: Eclipse Project
Component: UI (show other bugs)
Version: 3.1   Edit
Hardware: PC Windows XP
: P3 enhancement (vote)
Target Milestone: ---   Edit
Assignee: JDT-UI-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-05-10 08:37 EDT by David Saff CLA
Modified: 2009-01-23 11:33 EST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description David Saff CLA 2005-05-10 08:37:01 EDT
Given:

public class Card {
	public static Card create(Side... sides) {
		return create2(sides);
	}
}

Using quick fix on create2 to "Create method side2" should offer Side... as one
of the possible types of sides.  Currently, it just offers Side[].