我正在使用 IntelliJ 15,并且试图在通过 Maven 下载的 .jar 文件中打包的 .java 文件中查找方法和对象的用法。我现在已经使用了它们:我可以通过简单的search
(ctrl+f) 命令找到它们,但是当我尝试使用该Find Usages
命令时,会返回后标题消息。
我读过这篇文章,但它不起作用。
这是一个文件中的方法示例InstanceManager.class
(属于使用 Maven 导入的 .jar 文件):
private void notifyNewInstance(Instance instance) {
List var2 = this.instanceListeners;
synchronized(this.instanceListeners) {
Iterator var3 = this.instanceListeners.iterator();
while(var3.hasNext()) {
InstanceListener listener = (InstanceListener)var3.next();
try {
listener.newInstanceAvailable(instance);
} catch (Throwable var7) {
LOG.error("Notification of new instance availability failed.", var7);
}
}
}
}
并在同一个文件中调用,this.notifyNewInstance(host);
但如果我使用Find usages
onnotifyNewInstance
我会收到错误。
更新:
我试过Download
源代码,但我得到了消息:
无法下载源找不到源:org.apache.flink:flink-runtime_2.10:1.1-20160316.114232-35
你能帮我解决这个问题吗?