Bug 3424 - DCR: code assist support for variable name suggestions (1GKM6OQ)
Summary: DCR: code assist support for variable name suggestions (1GKM6OQ)
Status: RESOLVED FIXED
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 2.0   Edit
Hardware: All Windows NT
: P2 normal (vote)
Target Milestone: 2.0 M1   Edit
Assignee: David Audel CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2001-10-10 22:54 EDT by Erich Gamma CLA
Modified: 2002-01-11 09:04 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 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);