Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 javadocs 显示每个参数的完整包名称和方法的返回类型。例如:
compareResults(java.util.ArrayList<java.util.ArrayList<java.lang.Double>>)
在 Java api 参考中,ArrayList 等没有以完整的包名开头,它只是 ArrayList。
我怎样才能做到这一点?
您正在寻找像这样工作的-noqualifier 选项:
-noqualifier java.*:com.sun.*