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 221334 - Find usages does not find field in javadoc where it is referenced
Summary: Find usages does not find field in javadoc where it is referenced
Status: NEW
Alias: None
Product: java
Classification: Unclassified
Component: Javadoc (show other bugs)
Version: 7.2
Hardware: PC Windows 7
: P3 normal (vote)
Assignee: Ralph Ruijs
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-11-02 11:00 UTC by Jachym_Vojtek
Modified: 2012-11-02 11:15 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Jachym_Vojtek 2012-11-02 11:00:11 UTC
package refactor.findUsages;

public class FindUsages {
    public int x;    
    int y;
    private int z;    
}
--
package refactor.findUsages;

/**
 * {@link FindUsages#x}, {@link FindUsages#y}, {@link FindUsages#z}
 */
public class FindUsages2 {
    
}

There is not found any usage for x, y or z in FindUsages2 class even if "Search in Comments" is checked.