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 203242

Summary: [71cat] addittional refactoring: change type
Product: editor Reporter: muellermi <muellermi>
Component: RefactoringAssignee: Jan Becicka <jbecicka>
Status: RESOLVED DUPLICATE    
Severity: normal    
Priority: P3    
Version: 7.1   
Hardware: PC   
OS: Windows XP   
Issue Type: ENHANCEMENT Exception Reporter:

Description muellermi 2011-10-06 14:28:08 UTC
Product Version = NetBeans IDE Dev (Build 201110040601)
Operating System = Windows XP version 5.1 running on x86
Java; VM; Vendor = 1.7.0
Runtime = Java HotSpot(TM) Client VM 21.0-b17

given:
    private Integer _size;

    public Integer getSize() {
        return _size;
    }

    public void setSize(Integer size) {
        _size = size;
    }

- User places caret onto declaration of _size and calls Refactoring, change parameter
- Refactoring queries new type by offering an overwritable list of "compatible" types
- User picks or enters new type, e.G. "Long"
--> System replaces the type for all occurencies (declaration, getter, setter and all usages)
Comment 1 Ralph Ruijs 2011-10-20 08:27:55 UTC

*** This bug has been marked as a duplicate of bug 192580 ***