Bug 3424

Summary: DCR: code assist support for variable name suggestions (1GKM6OQ)
Product: [Eclipse Project] JDT Reporter: Erich Gamma <erich_gamma>
Component: CoreAssignee: David Audel <david_audel>
Status: RESOLVED FIXED QA Contact:
Severity: normal    
Priority: P2    
Version: 2.0   
Target Milestone: 2.0 M1   
Hardware: All   
OS: Windows NT   
Whiteboard:

Description Erich Gamma CLA 2001-10-10 22:54:53 EDT
EG (25.09.2001 17:02:57)
	After a variable declaration code assist could provide a list
	of variable names that are derived from the type name.
	For example

	FileInputStream  >< code assist gives:
					fileInputStream;
					inputStream;

NOTES:
Comment 1 David Audel CLA 2001-10-17 14:19:58 EDT
API Changes on ICompletionRequestor
    + Added API for suggest variable name:
      void acceptVariableName(
          char[] typePackageName,
          char[] typeName,
          char[] name,
          char[] completionName,
          int completionStart,
          int completionEnd);