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 201444 - Find usages could take into account reflection/class loading
Summary: Find usages could take into account reflection/class loading
Status: NEW
Alias: None
Product: java
Classification: Unclassified
Component: Refactoring (show other bugs)
Version: 7.0.1
Hardware: PC Windows 7 x64
: P4 normal (vote)
Assignee: Jan Becicka
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-08-30 15:03 UTC by muzPayne
Modified: 2011-11-07 01:14 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 muzPayne 2011-08-30 15:03:46 UTC
It will be nice if find usages can take into account:

1. reflection (which is just special case for class loading for this case)
 * Class.forName("...")
2. class loading
 * ClassLoader.loadClass("...")

in both examples if the given argument is fully qualified string literal...