查找 java 标准库 class 文档的作者

Find authors of the documentation of a java standard library class

对于我的研究,我想了解一些 Java 标准库 类 的作者,例如 Socket. I tried it with openjdk,但并不那么成功。我想看看哪个作者写了 API 文档的哪一部分。

我在 java.net.Socket class:

的 JavaDoc 中找到了它
/**
 * This class implements client sockets (also called just
 * "sockets"). A socket is an endpoint for communication
 * between two machines.
 * <p>
 * The actual work of the socket is performed by an instance of the
 * {@code SocketImpl} class. An application, by changing
 * the socket factory that creates the socket implementation,
 * can configure itself to create sockets appropriate to the local
 * firewall.
 *
 * @author  unascribed
 * @see     java.net.Socket#setSocketImplFactory(java.net.SocketImplFactory)
 * @see     java.net.SocketImpl
 * @see     java.nio.channels.SocketChannel
 * @since   JDK1.0
 */
public
class Socket implements java.io.Closeable

同样的方法你可以得到 SocketChannel class 的作者:

* @author Mark Reinhold
* @author JSR-51 Expert Group
* @since 1.4

SocketImplFactory接口:

* @author  Arthur van Hoff
* @see     java.net.Socket
* @see     java.net.ServerSocket
* @since   JDK1.0

你看这个 class 包含在 1996 年发布的 JDK 1.0 版本中。可能有一群作者,他们没有在 JavaDoc 中指定他们的名字。

更新。 正如@Selphiron 发现的那样,有 OpenJDK Mercurial Reposotories。左上角有很多有用的技术信息,比如日志,分支,标签等等。

Example 对于 Gregorian Calendar class.