Bug 45165 - refactoring variable to affect getter/setter
Summary: refactoring variable to affect getter/setter
Status: RESOLVED INVALID
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 3.0   Edit
Hardware: All All
: P3 enhancement (vote)
Target Milestone: 3.0 M5   Edit
Assignee: JDT-Core-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-10-18 12:20 EDT by Timo Nentwig CLA
Modified: 2003-11-14 07:26 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 Timo Nentwig CLA 2003-10-18 12:20:28 EDT
Hard to judge whether this is a bug or a feature request: 
 
public class Blah 
{ 
	String blah; 
 
	// generated by eclipse 
	public String getBlah() 
	{ 
		return blah; 
	} 
 
	// setter accordingly 
} 
 
Rename the String variable blah via eclipse' refactor method to whatever and 
getBlah() will return whatever but the method will still be named getBlah(), 
not getWhatever().
Comment 1 Timo Nentwig CLA 2003-10-18 12:42:59 EDT
Functionality already implemented.