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 85571 - Find usages return no usages for fields
Summary: Find usages return no usages for fields
Status: VERIFIED FIXED
Alias: None
Product: java
Classification: Unclassified
Component: Source (show other bugs)
Version: 6.x
Hardware: All All
: P3 blocker (vote)
Assignee: Jan Becicka
URL:
Keywords:
Depends on:
Blocks: 87136
  Show dependency tree
 
Reported: 2006-09-22 15:38 UTC by Jiri Prox
Modified: 2013-05-21 12:32 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Jiri Prox 2006-09-22 15:38:09 UTC
NetBeans IDE Dev (Build 060922)
1.6.0-rc; Java HotSpot(TM) Client VM 1.6.0-rc-b98
Linux version 2.6.5-1.358 running on i386
en_US (nb); UTF-8

Find usages do not work for fields in free form project. It  always return 0
occurrences.

Steps to reproduce:
1) create free from project
2) create class:
public class Test {    
    String name;       
    public String getName(int param) {     
        return name;
    }    
}

3) find usages of filed "name"

-> no usages found
Comment 1 Jan Becicka 2006-09-29 12:23:41 UTC
Fixed.
Comment 2 Jiri Prox 2006-10-02 12:40:05 UTC
verified