Bug 94285

Summary: [quick fix] "Create method" should offer vararg param
Product: [Eclipse Project] JDT Reporter: David Saff <david>
Component: UIAssignee: JDT-UI-Inbox <jdt-ui-inbox>
Status: ASSIGNED --- QA Contact:
Severity: enhancement    
Priority: P3    
Version: 3.1   
Target Milestone: ---   
Hardware: PC   
OS: Windows XP   
Whiteboard:

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[].