This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 205563 - don't see rename getters and setters
Summary: don't see rename getters and setters
Status: RESOLVED FIXED
Alias: None
Product: java
Classification: Unclassified
Component: Refactoring (show other bugs)
Version: 7.1
Hardware: PC Windows 7
: P3 normal (vote)
Assignee: Jan Becicka
URL:
Keywords:
Depends on:
Blocks: 205605
  Show dependency tree
 
Reported: 2011-11-25 13:10 UTC by medeag
Modified: 2012-04-18 21:28 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
capture (39.76 KB, image/png)
2011-11-25 13:10 UTC, medeag
Details

Note You need to log in before you can comment on or make changes to this bug.
Description medeag 2011-11-25 13:10:43 UTC
Created attachment 113536 [details]
capture

I have simple javabean:

public class Student {

    private String name;
    private List<String> names;
    public List<String> getNames() {
        return names;
    }
    public void setNames(List<String> names) {
        this.names = names;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public Student(String name) {
        this.name = name;
    }
    public Student() {
        this.name = "dummy";
    }
}
and i'm trying to rename "names" but i don't see option rename getters and setters for it

Product Version: NetBeans IDE 7.1 RC1 (Build 201111171527)
Java: 1.7.0; Java HotSpot(TM) Client VM 21.0-b17
System: Windows 7 version 6.1 running on x86; Cp1252; en_US (nb)
Comment 1 Jiri Prox 2011-11-25 13:50:34 UTC
reproducible,

renaming getters/setter checkbox is not provided when refactoring field with generics
Comment 2 Jan Becicka 2012-04-16 11:51:01 UTC
Changeset: 926befeecde6
Author:    Jan Becicka <jbecicka@netbeans.org>
Date:      2012-04-16 11:56
Message:   
Issue #205563 - don't see rename getters and setters
Comment 3 Quality Engineering 2012-04-18 21:28:54 UTC
Integrated into 'main-golden', will be available in build *201204181547* on http://bits.netbeans.org/dev/nightly/ (upload may still be in progress)
Changeset: http://hg.netbeans.org/main-golden/rev/926befeecde6
User: Jan Becicka <jbecicka@netbeans.org>
Log: Issue #205563 - don't see rename getters and setters