只有第一个构造函数出现在 javadoc 中(运行 来自 eclipse)?
Only first constructor showing up in javadoc (run from eclipse)?
为什么只有第一个构造函数出现在 javadoc 中?
代码摘录:
/**
* Returns a <code>Config</code> object resulting from parsing a
* configuration file.
*
* @param p a <code>Path</code> object representing the configuration file.
*/
public Config(Path p) {
...code elided here...
}
/**
* Returns a <code>Config</code> object resulting from parsing a
* configuration file.
*
* @param filename a <code>String</code> naming the configuration file.
*/
public Config(String filename) {
this(Paths.get(filename));
}
Java文档摘录:
(同样只有一个出现在"Constructor Detail"中)
后代的详细信息:OS X 10.8.5,Eclipse EE Juno SR2,Java 1.7.0_72(但请参阅已接受的答案)
我可以直接使用 javadoc
命令行工具重现 1.6.0_21 的问题。可以理解的是,它抱怨 package java.nio.file does not exist
但仍然设法创建文件(只有一个构造函数)。
看起来您正在使用 1.6(或更早版本)javadoc
工具为 1.7+ 来源生成文档(这也可以解释为什么您的屏幕截图看起来有点... 'old')
为什么只有第一个构造函数出现在 javadoc 中?
代码摘录:
/**
* Returns a <code>Config</code> object resulting from parsing a
* configuration file.
*
* @param p a <code>Path</code> object representing the configuration file.
*/
public Config(Path p) {
...code elided here...
}
/**
* Returns a <code>Config</code> object resulting from parsing a
* configuration file.
*
* @param filename a <code>String</code> naming the configuration file.
*/
public Config(String filename) {
this(Paths.get(filename));
}
Java文档摘录:
(同样只有一个出现在"Constructor Detail"中)
后代的详细信息:OS X 10.8.5,Eclipse EE Juno SR2,Java 1.7.0_72(但请参阅已接受的答案)
我可以直接使用 javadoc
命令行工具重现 1.6.0_21 的问题。可以理解的是,它抱怨 package java.nio.file does not exist
但仍然设法创建文件(只有一个构造函数)。
看起来您正在使用 1.6(或更早版本)javadoc
工具为 1.7+ 来源生成文档(这也可以解释为什么您的屏幕截图看起来有点... 'old')