Javadoc在使用Ant的软件包中仅提供一个类

我正在使用apache ant为我的项目生成javadoc.我的一个程序包中有多个类,我只想显示一个.我该怎么做呢?这是我当前的代码.

<javadoc
    sourcepath="jig-engine/src"
    destdir="${target.path}/docs/javadoc/"
    packagenames="jig.engine.util.Vector2D" >
</javadoc>

(为清楚起见简化)

解决方法:

使用sourcefiles参数而不是sourcepath:

<javadoc
    sourcefiles="jig-engine/src/path/to/your/file.java"
    destdir="${target.path}/docs/javadoc/">
</javadoc>
上一篇:PAT 乙级 1057.数零壹 C++/Java


下一篇:PTA 乙级 1057 数零壹 (20分) C++